This commit is contained in:
Morten Olsen
2024-03-30 20:53:01 +01:00
commit 98e39a54cc
94 changed files with 11654 additions and 0 deletions

6
src/pages/resume.json.ts Normal file
View File

@@ -0,0 +1,6 @@
import { data } from '@/data/data.ts';
export async function GET() {
const resume = await data.getJsonResume();
return new Response(JSON.stringify(resume, null, 2));
}