Skip to content

Commit 4d3b1c1

Browse files
author
Rich Harris
committed
fix congratulations exercise
1 parent 382d710 commit 4d3b1c1

File tree

2 files changed

+10
-5
lines changed
  • content/tutorial/02-advanced-svelte/12-next-steps/01-congratulations

2 files changed

+10
-5
lines changed

content/tutorial/02-advanced-svelte/12-next-steps/01-congratulations/README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,15 @@
22
title: Congratulations!
33
---
44

5-
You've now finished the Svelte tutorial and are ready to start building apps. You can refer back to individual chapters at any time (click the title above to reveal a dropdown) or continue your learning via the [API reference](https://svelte.dev/docs), [Examples](https://svelte.dev/examples) and [Blog](https://svelte.dev/blog). If you're a Twitter user, you can get updates via [@sveltejs](https://twitter.com/sveltejs).
5+
You've now finished the Svelte tutorial and are ready to start building.
66

7-
To get set up in your local development environment, check out [the quickstart guide](https://svelte.dev/blog/the-easiest-way-to-get-started).
7+
The next two parts of the tutorial will focus on SvelteKit, a full-fledged framework for creating apps of all shapes and sizes.
88

9-
If you're looking for a more expansive framework that includes routing, server-side rendering and everything else, take a look at [SvelteKit](https://kit.svelte.dev).
9+
If you're suffering from information overload and aren't ready to go through the SvelteKit tutorial yet, don't worry! You can use your existing Svelte knowledge without learning all of SvelteKit. Just run this in your terminal and follow the prompts...
1010

11-
Most importantly: since you're now a member of the Svelte community, you should [join our friendly Discord chatroom](https://svelte.dev/chat). That's where you'll find fellow Svelte users, and it's where we plan the future of the framework.
11+
```bash
12+
/// no-file
13+
npm create svelte@latest
14+
```
15+
16+
...and start editing `src/routes/+page.svelte`. When you're ready, click the link below to continue your journey.

content/tutorial/02-advanced-svelte/12-next-steps/01-congratulations/app-a/src/lib/App.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
frame = requestAnimationFrame(loop);
2424
2525
confetti = confetti.map((emoji) => {
26-
emoji.y += 0.7 * emoji.r;
26+
emoji.y += 0.3 * emoji.r;
2727
if (emoji.y > 120) emoji.y = -20;
2828
return emoji;
2929
});

0 commit comments

Comments
 (0)