-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: guides page translated into Korean (#732)
- Loading branch information
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
50 changes: 50 additions & 0 deletions
50
i18n/kr/docusaurus-plugin-content-docs/current/guides/index.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
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λ₯Ό νλ‘μ νΈμ λμ νκ±°λ κΈ°μ‘΄ ꡬ쑰λ₯Ό κ°μ νκ³ μ ν λ μ°Έκ³ νκΈ° μ’μ 리μμ€μ λλ€. | ||
</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="λ°©λ²λ‘ μ μ μ©ν μ€μ μμ" | ||
to="/docs/guides/examples" | ||
Icon={ToolOutlined} | ||
tags={['Authentication', 'Types', 'Page layout']} | ||
/> | ||
<NavCard | ||
title="Migration" | ||
description="κΈ°μ‘΄ μν€ν μ²μμ λ§μ΄κ·Έλ μ΄μ νκΈ° μν κ°μ΄λ" | ||
to="/docs/guides/migration/from-v1" | ||
Icon={ImportOutlined} | ||
tags={['From custom architecture', 'From FSv1']} | ||
/> | ||
<NavCard | ||
title="Tech" | ||
description="νλ μμν¬ λ° λΌμ΄λΈλ¬λ¦¬λ³ μ¬μ© κ°μ΄λ" | ||
to="/docs/guides/tech/with-nextjs" | ||
Icon={FunctionOutlined} | ||
tags={['NextJS', 'NuxtJS', 'React Query', 'SvelteKit']} | ||
/> | ||
|
||
<NavCard | ||
title="Code Issues (Smells)" | ||
description="μ½λμμ λ°κ²¬ν μ μλ νν μ€κ³μμ λ¬Έμ " | ||
to="/docs/guides/issues/desegmented" | ||
Icon={BugOutlined} | ||
tags={['Desegmented', 'Routing', "Cross-imports"]} | ||
/> | ||
|
||
|
||
|