ui:add header component

This commit is contained in:
2025-09-29 11:59:31 +02:00
parent b6cf77ec81
commit 204a443847
5 changed files with 59 additions and 53 deletions

View File

@@ -0,0 +1,7 @@
import type { LayoutServerLoad } from './$types';
export const load: LayoutServerLoad = async (event) => {
return {
user: event.locals.user
};
};