-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: guide example page translated into Korean
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
i18n/kr/docusaurus-plugin-content-docs/current/guides/examples/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,36 @@ | ||
--- | ||
hide_table_of_contents: true | ||
--- | ||
|
||
# Examples | ||
|
||
<p class="summary"> | ||
λ°©λ²λ‘ μ μ©μ λν μμλ€ | ||
</p> | ||
|
||
## Main | ||
|
||
import NavCard from "@site/src/shared/ui/nav-card/tmpl.mdx" | ||
import { UserSwitchOutlined, LayoutOutlined, FontSizeOutlined } from "@ant-design/icons"; | ||
|
||
<NavCard | ||
title="Authentication" | ||
description="μΈμ¦ λ‘μ§μ μΈλΆν" | ||
to="/docs/guides/examples/auth" | ||
Icon={UserSwitchOutlined} | ||
tags={["Forms", "2FA", "OAuth", "Token storage", "Token refresh"]} | ||
/> | ||
<NavCard | ||
title="Types" | ||
description="νμ μμΉ μ μ λ° FSDμμμ νμ μ’ λ₯" | ||
to="/docs/guides/examples/types" | ||
Icon={FontSizeOutlined} | ||
tags={["DTO", "Mappers", "Entity relationships", "Auto-generation", "Validation schemas"]} | ||
/> | ||
<NavCard | ||
title="Page layouts" | ||
description="FSDμμ νμ μ μ΄λμ λ°°μΉνκ³ νμ©ν μ§μ λν κ°μ΄λ" | ||
to="/docs/guides/examples/page-layout" | ||
Icon={LayoutOutlined} | ||
tags={["Where to store them", "Using widgets in layouts"]} | ||
/> |