added links route

pull/3/head
TZGyn 2 years ago
parent eb6312d2d1
commit 6205687d50
Signed by: TZGyn
GPG Key ID: 122EAF77AE81FD4A

@ -0,0 +1,5 @@
import type { PageServerLoad } from './$types'
export const load = (async () => {
return {}
}) satisfies PageServerLoad

@ -0,0 +1,9 @@
<script lang="ts">
import type { PageData } from './$types'
import { Separator } from '$lib/components/ui/separator'
export let data: PageData
</script>
<div class="p-8 text-4xl font-bold">Links</div>
<Separator />
Loading…
Cancel
Save