Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: guides page translated into Korean #732

Merged
merged 2 commits into from
Oct 10, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions i18n/kr/docusaurus-plugin-content-docs/current/guides/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
hide_table_of_contents: true
pagination_prev: get-started/index
---

# 🎯 Guides

<span class="badge badge--primary margin-bottom--md">PRACTICE-ORIENTED</span>

<p class="summary">
Feature-Sliced Design(FSD)의 적용을 위한 종합 가이드입니다. 구체적인 예시, 마이그레이션 전략, 그리고 FSD 레거시 코드에서 발생할 수 있는 문제점들을 다룹니다. FSD를 프로젝트에 도입하거나 기존 구조를 개선하고자 할 때 참고하기 좋은 리소스입니다.
Gaic4o marked this conversation as resolved.
Show resolved Hide resolved
</p>

## Main

import NavCard from "@site/src/shared/ui/nav-card/tmpl.mdx"
import { ToolOutlined, ImportOutlined, BugOutlined, FunctionOutlined } from "@ant-design/icons";

<NavCard
title="Examples"
description="인증, 타입 관리, 페이지 레이아웃 등 다양한 기능을 다루는 예제들"
Gaic4o marked this conversation as resolved.
Show resolved Hide resolved
to="/docs/guides/examples"
Icon={ToolOutlined}
tags={['Authentication', 'Types', 'Page layout']}
/>
<NavCard
title="Migration"
description="기존 아키텍처 및 FSD v1에서 FSD v2로 전환하는 가이드"
Gaic4o marked this conversation as resolved.
Show resolved Hide resolved
to="/docs/guides/migration/from-v1"
Icon={ImportOutlined}
tags={['From custom architecture', 'From FSv1']}
/>
<NavCard
title="Tech"
description="Next.js, React Query 등 다양한 프레임워크와 라이브러리와 함께 FSD를 사용하는 방법"
Gaic4o marked this conversation as resolved.
Show resolved Hide resolved
to="/docs/guides/tech/with-nextjs"
Icon={FunctionOutlined}
/>

<NavCard
title="Code Issues (Smells)"
description="레거시 코드에서 발생하는 아키텍처 문제와 해결책"
Gaic4o marked this conversation as resolved.
Show resolved Hide resolved
to="/docs/guides/issues/desegmented"
Icon={BugOutlined}
tags={['Desegmented', 'Routing', "Cross-imports"]}
/>