summaryrefslogtreecommitdiff
path: root/src/routes/+page.svelte
blob: f4dc65fd870792aa24aefeb7c70890d4e09814c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<script>
  import Attributions from "$lib/components/Attributions.svelte";
  import Socials from "$lib/components/Socials.svelte";
  import Header from "$lib/components/Header.svelte";
  import Keys from "$lib/components/Keys.svelte";
  import Services from "$lib/components/Services.svelte";
</script>

<div class="flex flex-col w-full place-content-center place-items-center">
  <div
    class="flex flex-col place-content-center place-items-center
	w-[90%] my-5"
  >
    <Header />
    <div class="divider"></div>
    <Services />
    <div class="divider"></div>
    <Keys />
    <div class="divider"></div>
    <Socials />
    <div class="divider"></div>
    <Attributions />
  </div>
</div>