import type { LayoutServerLoad } from "./$types";
import { redirect } from "@sveltejs/kit";

export const load: LayoutServerLoad = async ({ locals }) => {
	if (!locals.user?.authenticated) {
		throw redirect(302, "/login");
	}
	return {};
};
