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

i18n(ko-KR): update 3.mdx #8521

Merged
merged 3 commits into from
Jun 14, 2024
Merged
Changes from all commits
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
38 changes: 28 additions & 10 deletions src/content/docs/ko/tutorial/6-islands/3.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ description: >-
튜토리얼: 첫 번째 Astro 블로그 구축 — 프로젝트의 최종 버전을 확인하고 Astro의 다음 단계가 무엇인지 알아보세요!
i18nReady: true
---


import Box from '~/components/tutorial/Box.astro';
import Checklist from '~/components/Checklist.astro';
import CompletionConfetti from '~/components/tutorial/CompletionConfetti.astro';
import PreCheck from '~/components/tutorial/PreCheck.astro';
import Button from '~/components/Button.astro';

import { CardGrid, LinkCard } from '@astrojs/starlight/components';

한 가지 더 수정해야 할 사항이 있습니다.

```astro title="src/pages/about.astro" del={5} ins={6}
Expand Down Expand Up @@ -53,14 +53,6 @@ Astro의 기본에 대해 조금 배우고 그 과정에서 즐거운 시간을
</Checklist>
</Box>

## 다음 단계

이 프로젝트에 [view transitions를 추가](/ko/tutorials/add-view-transitions/)하거나 [콘텐츠 컬렉션을 추가하여 블로그 게시물을 관리](/ko/tutorials/add-content-collections/)하려면 튜토리얼 확장 중 하나를 계속 진행하세요.

[새 Astro 프로젝트 시작](/ko/getting-started/)

[Discord에 참여하세요](https://astro.build/chat)

<CompletionConfetti />

## 당신의 성과를 공유해보세요!
Expand All @@ -71,3 +63,29 @@ Astro 블로그 튜토리얼을 완료하신 것을 축하드립니다! 당신
<Button link='https://twitter.com/intent/tweet?text=Just%20finished%20learning%20how%20to%20build%20my%20first%20Astro%20blog!%20Check%20it%20out%20at%20https://docs.astro.build/%0Avia%20%40astrodotbuild'>Twitter에 공유</Button>
<Button link='https://www.reddit.com/submit?url=https://docs.astro.build/&title=Just%20finished%20learning%20how%20to%20build%20my%20first%20Astro%20blog!'>Reddit에 공유</Button>
</div>

## 다음 단계

튜토리얼 확장 중 하나를 사용하여 이 프로젝트의 최종 코드를 향상시키거나 다음 Astro 프로젝트를 시작할 수 있습니다!
<CardGrid>
<LinkCard
title="콘텐츠 컬렉션으로 확장"
description="튜토리얼 코드를 리팩토링하여 콘텐츠 컬렉션으로 블로그 게시물을 관리하세요."
href="/ko/tutorials/add-content-collections/"
/>
<LinkCard
title="view transitions로 확장"
description="페이지 탐색을 사용자 정의하려면 튜토리얼 코드에 view transitions를 추가하세요."
href="/ko/tutorials/add-view-transitions/"
/>
<LinkCard
title="새 Astro 프로젝트 시작"
description="새로운 빈 프로젝트를 시작하거나 기존 Astro 테마 템플릿을 사용하세요."
href="/ko/install-and-setup/"
/>
<LinkCard
title="Discord에 참여"
description="커뮤니티를 통해 질문하고, 작업을 공유하고, 프로젝트에 참여하세요!"
href="https://astro.build/chat"
/>
</CardGrid>
Loading