initial commit

This commit is contained in:
averel10
2026-02-27 13:28:19 +01:00
parent 868e003501
commit 0285cf0956
8 changed files with 683 additions and 19 deletions

5
src/app/api/route.ts Normal file
View File

@@ -0,0 +1,5 @@
import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({ message: "Hello world!" });
}