add initial Glaube section

This commit is contained in:
2024-02-01 17:15:51 +01:00
parent 29893f931d
commit 6ccdfd51de
9 changed files with 1574 additions and 83 deletions

View File

@@ -0,0 +1,7 @@
import { get_username } from '$lib/js/get_username';;
import type { Actions, PageServerLoad } from "./$types"
import { error } from "@sveltejs/kit"
export const load = (async ({cookies}) => {
return { user: await get_username(cookies) }
});