Skip to content
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
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에서 타입을 어디에 배치하고 활용할지에 대한 가이드"
Copy link
Contributor

@movie42 movie42 Oct 22, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

page layouts을 직접 번역하셨기 때문에 아시겠지만 번역된 description과 많이 다릅니다.
Types discription의 내용이 섞여 들어간것 같습니다. 원문 내용 확인하셔서 수정해주세요.

to="/docs/guides/examples/page-layout"
Icon={LayoutOutlined}
tags={["Where to store them", "Using widgets in layouts"]}
/>