2022-08-04 12:24:22 +03:00
|
|
|
<script lang="ts">
|
2022-08-05 17:01:15 +03:00
|
|
|
import SvelteSeo from "svelte-seo";
|
|
|
|
import Hero from "$lib/Hero.svelte";
|
2022-08-17 17:08:41 +03:00
|
|
|
import LinkButton from "$lib/LinkButton.svelte";
|
2022-12-27 17:28:47 +02:00
|
|
|
import Announcements from "./Announcements.svelte";
|
2022-11-09 20:42:34 +02:00
|
|
|
import type { PageData } from "./$types";
|
|
|
|
|
2022-12-27 17:28:47 +02:00
|
|
|
export let data: PageData;
|
2022-08-05 15:46:54 +03:00
|
|
|
|
2022-08-08 08:20:29 +03:00
|
|
|
let description: string = "Open source development and hosted services.";
|
2022-08-04 12:24:22 +03:00
|
|
|
</script>
|
|
|
|
|
2022-12-27 17:28:47 +02:00
|
|
|
<SvelteSeo
|
|
|
|
title="Home | Project Segfault"
|
|
|
|
{description}
|
|
|
|
/>
|
2022-08-05 17:01:15 +03:00
|
|
|
|
|
|
|
<Hero
|
|
|
|
title="Project Segfault"
|
2022-11-11 15:32:29 +02:00
|
|
|
{description}
|
2022-12-27 17:28:47 +02:00
|
|
|
marginTop="4"
|
2022-08-05 17:01:15 +03:00
|
|
|
>
|
2022-12-27 17:28:47 +02:00
|
|
|
<div
|
|
|
|
class="flex flex-col sm:flex-row justify-center items-center gap-4 m-4"
|
|
|
|
>
|
2022-08-31 14:16:12 +03:00
|
|
|
<LinkButton
|
2022-09-10 18:58:19 +03:00
|
|
|
url="/instances"
|
|
|
|
title="Explore our instances"
|
2023-01-05 19:12:43 +02:00
|
|
|
icon="i-ic:outline-room-service text-xl"
|
2022-08-31 14:16:12 +03:00
|
|
|
/>
|
2022-08-17 17:08:41 +03:00
|
|
|
<LinkButton
|
|
|
|
url="/donate"
|
2023-01-05 19:12:43 +02:00
|
|
|
icon="i-ic:outline-attach-money text-xl"
|
2022-08-17 17:08:41 +03:00
|
|
|
title="Donate"
|
2022-08-24 19:55:39 +03:00
|
|
|
bg="#F6C915"
|
|
|
|
color="#151515"
|
2022-08-17 17:08:41 +03:00
|
|
|
/>
|
2022-08-05 17:01:15 +03:00
|
|
|
</div>
|
2022-08-05 15:46:54 +03:00
|
|
|
</Hero>
|
2022-08-04 12:24:22 +03:00
|
|
|
|
2022-12-27 17:28:47 +02:00
|
|
|
<Announcements {data} />
|