import { authenticate } from '$lib/utils/auth'; import type { PageLoad } from './$types'; export const load = (async () => { await authenticate(); return { meta: { title: 'Workflows', }, }; }) satisfies PageLoad;