frontend: initial commit

This commit is contained in:
$(pass /github/name)
2024-09-07 13:36:15 +02:00
parent 4d6938de96
commit 147b8c0afd
22 changed files with 1804 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<script>
import Footer from "$lib/components/Footer.svelte";
import Header from "$lib/components/Header.svelte";
import Transition from "$lib/components/Transition.svelte";
import "$lib/css/styles.min.css";
/** @type {import('./$types').PageData} */
export let data;
</script>
<Transition key={data.url} duration={600}>
<Header />
<slot />
<Footer />
</Transition>