feat: seasonal decoration overlay + logo animation, admin site-theme config page

This commit is contained in:
root
2026-04-13 21:42:12 +05:00
parent 734ba68eed
commit 419bb7e366
9 changed files with 687 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
import type { PageServerLoad } from './$types';
import { getSiteConfig } from '$lib/server/pocketbase';
export const load: PageServerLoad = async () => {
const config = await getSiteConfig();
return { config };
};