main-site/src/routes/+page.svelte

64 lines
1.8 KiB
Svelte
Raw Normal View History

<script lang="ts">
2024-01-06 14:02:30 +01:00
import { Separator } from '$lib/components/ui/separator';
import { OpenInNewWindow } from 'radix-icons-svelte';
import Emfed from '$lib/components/Emfed.svelte';
2024-01-06 09:49:24 +01:00
</script>
<svelte:head>
2024-01-02 02:39:22 +01:00
<title>Home</title>
<meta name="description" content="Landing Page for neshweb.net" />
</svelte:head>
2024-01-01 22:55:35 +01:00
2024-01-06 14:36:52 +01:00
<div class="flex max-h-full flex-row justify-center justify-around gap-4 overflow-auto p-8">
<div class="flex flex-1 flex-col items-center">
2024-01-06 14:02:30 +01:00
<div class="flex flex-col gap-y-2 rounded-md border bg-black/55 p-4 backdrop-blur-sm">
<h1 class="text-center text-2xl">Home Page</h1>
<p>
I'm not sure what to put here quite yet, maybe I'll think of something eventually. In the
meantime I've linked some of my accounts in the sidebar to the right
</p>
2024-01-06 09:49:24 +01:00
</div>
</div>
2024-01-06 14:02:30 +01:00
<div
2024-01-06 14:36:52 +01:00
class="flex w-[22rem] flex-col items-center gap-y-1 overflow-auto rounded-md border bg-black/55 py-1 backdrop-blur-sm"
2024-01-06 14:02:30 +01:00
>
2024-01-06 09:49:24 +01:00
<p class="font-bold">Fediverse Accounts</p>
<Separator class="max-w-80" />
2024-01-06 14:02:30 +01:00
<a
rel="me"
href="https://mastodon.neshweb.net/@neshura"
target="_blank"
class="flex flex-row items-center gap-1 hover:text-secondary"
>
2024-01-06 09:49:24 +01:00
Mastodon
<OpenInNewWindow />
</a>
2024-01-06 14:02:30 +01:00
<a
rel="noopener noreferrer"
href="https://bookwormstory.social/u/Neshura"
target="_blank"
class="flex flex-row items-center gap-1 hover:text-secondary"
>
2024-01-06 09:49:24 +01:00
Lemmy
<OpenInNewWindow />
</a>
2024-01-06 14:02:30 +01:00
<a
rel="noopener noreferrer"
href="https://neshweb.tv/c/neshura_ch/videos"
target="_blank"
class="flex flex-row items-center gap-1 hover:text-secondary"
>
2024-01-06 09:49:24 +01:00
PeerTube
<OpenInNewWindow />
</a>
<Separator class="max-w-80" />
<p class="font-bold">Mastodon Feed</p>
2024-01-06 09:49:24 +01:00
<Separator class="max-w-80" />
2024-01-06 14:02:30 +01:00
<Emfed
account="https://mastodon.neshweb.net/@neshura"
maxToots={4}
accountId="109199738141333007"
/>
2024-01-06 09:49:24 +01:00
</div>
2024-01-01 05:55:11 +01:00
</div>