1---
2import Logo from "../assets/logo.svg";
3import Layout from "../layouts/Layout.astro";
4import { Bluesky, Discord, Github } from "simple-icons-astro";
5---
6
7<Layout>
8 <main
9 class="flex flex-col items-center justify-center gap-3 text-center leading-none"
10 >
11 <div class="flex items-center justify-center gap-4">
12 <Logo width="48px" height="48px" class="rounded-md shadow-md" />
13 <h1 class="text-[64px] font-bold">Comet</h1>
14 </div>
15 <p class="leading-tight">
16 Decentralised music streaming on ATProtocol.<br />Coming soon.
17 </p>
18 <p class="flex items-center gap-2 font-semibold">
19 <span class="mr-2">Follow us:</span>
20 <a href="https://bsky.app/profile/comet.sh" rel="noopener me">
21 <Bluesky />
22 </a>
23 <a href="https://discord.gg/ZKK7DnubD9" rel="noopener"><Discord /></a>
24 <a href="https://github.com/cometsh" rel="noopener me"><Github /></a>
25 </p>
26 </main>
27</Layout>
28
29<style>
30 @reference "../style/main.css";
31
32 body {
33 @apply from-brand-light flex items-center justify-center bg-radial-[circle_at_50%_150%] via-amber-900 to-stone-950 text-white;
34 }
35</style>