aboutsummaryrefslogtreecommitdiff
path: root/src/routes/welcome/+page.svelte
blob: 6ce837373fd24b3dd60edd022ffa57decbb12323 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<script>
import Landing from '$lib/Landing.svelte';
import LandingHero from '$lib/LandingHero.svelte';
import Spacer from '$lib/Layout/Spacer.svelte';
</script>

<LandingHero />

<Spacer />

<Landing />