We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 103ea87 commit 1071fb7Copy full SHA for 1071fb7
src/routes/+page.svelte
@@ -20,14 +20,6 @@
20
<Intro />
21
22
<div class="sections">
23
- {#await data.projects}
24
- <ProjectSection loading />
25
- {:then projects}
26
- <ProjectSection {projects} />
27
- {/await}
28
-
29
- <ExperienceSection />
30
31
{#await data.workouts}
32
<WorkoutsSection loading />
33
{:then workouts}
@@ -42,6 +34,14 @@
42
34
43
35
<PhotoSection />
44
36
37
+ {#await data.projects}
38
+ <ProjectSection loading />
39
+ {:then projects}
40
+ <ProjectSection {projects} />
41
+ {/await}
+
+ <ExperienceSection />
45
{#await data.games}
46
<GamesSection loading />
47
{:then games}
0 commit comments