Initial commit
All checks were successful
Build / build (push) Successful in 17s

This commit is contained in:
2025-12-14 16:48:50 +00:00
commit 97eb93d3af
29 changed files with 3127 additions and 0 deletions

10
src/routes/+page.ts Executable file
View File

@@ -0,0 +1,10 @@
import type { PageLoad } from './$types';
import { getBlogCollection } from '../app'
export const load: PageLoad = async ( fetch ) => {
let posts = (await getBlogCollection()).slice(0, 5);
return {
posts,
};
};