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

[tutorial] Improve "next steps" at end of tutorial #8507

Merged
merged 3 commits into from
Jun 13, 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
35 changes: 27 additions & 8 deletions src/content/docs/en/tutorial/6-islands/3.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ 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';

There's one more edit to make...

Expand Down Expand Up @@ -56,14 +57,6 @@ Welcome to the universe, astronaut. 👩🏼‍🚀👨🏿‍🚀🧑‍🚀
</Checklist>
</Box>

## Next Steps

Continue with either of our tutorial extensions to [add view transitions to this project](/en/tutorials/add-view-transitions/) or to [add a content collection to manage your blog posts](/en/tutorials/add-content-collections/)

[Start a new Astro project](/en/getting-started/)

[Join us on Discord](https://astro.build/chat)

<CompletionConfetti />

## Share your achievement!
Expand All @@ -74,3 +67,29 @@ Congratulations on completing the Astro blog tutorial! Share your achievement wi
<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'>Share on 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!'>Share on Reddit</Button>
</div>

## Next Steps

You can enhance this project's final code with one of our tutorial extensions, or start your next Astro project!
<CardGrid>
<LinkCard
title="Extend with content collections"
description="Refactor the tutorial code to manage your blog posts with content collections."
href="/en/tutorials/add-content-collections/"
/>
<LinkCard
title="Extend with view transitions"
description="Add view transitions to the tutorial code to customize page navigation."
href="/en/tutorials/add-view-transitions/"
/>
<LinkCard
title="Start a new Astro Project"
description="Begin a new empty project, or use an existing Astro theme template."
href="/en/install-and-setup/"
/>
<LinkCard
title="Join us on Discord"
description="Connect with our community to ask questions, share your work, and get involved with the project!"
href="https://astro.build/chat"
/>
</CardGrid>
Loading