import type { LayoutServerLoad } from './$types'; export const load: LayoutServerLoad = async ({ locals }) => { const { session, user } = await locals.safeGetSession(); return { session, user }; };