This repository has no description
1<script lang="ts">
2 import { getAuth } from "$lib/auth.svelte";
3 import MarketingHome from "$lib/components/home/MarketingHome.svelte";
4
5 const auth = getAuth();
6</script>
7
8<svelte:head>
9 <title>Tangled · The next-generation social coding platform</title>
10 <meta
11 name="description"
12 content="The next-generation social coding platform. Host repositories on your infrastructure with knots, use stacked pull requests, and run CI with spindles."
13 />
14</svelte:head>
15
16{#if auth.currentUser}
17 <section class="mx-auto flex w-full max-w-screen-lg flex-col gap-2 px-6 py-8">
18 <h1 class="typography-heading-3 font-semibold">Home</h1>
19 </section>
20{:else}
21 <MarketingHome />
22{/if}