aboutsummaryrefslogtreecommitdiff
path: root/src/routes/welcome/+page.svelte
blob: 3e15ab26da76e4c53a441be66ea5cd6ee043c6ef (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 />