fix: remove invalid <config> element in app/page.tsx

Replace incorrect React component with valid one.

#VERCEL_SKIP

Co-authored-by: Anders Lehmann Pier <3219386+AndersPier@users.noreply.github.com>
This commit is contained in:
v0
2025-06-19 22:07:32 +00:00
parent 2a4654083b
commit da55b8b7dd
10 changed files with 2239 additions and 50 deletions

12
app/api/health/route.ts Normal file
View File

@@ -0,0 +1,12 @@
import { NextResponse } from "next/server"
export async function GET() {
return NextResponse.json(
{
status: "healthy",
timestamp: new Date().toISOString(),
service: "markdown-editor",
},
{ status: 200 },
)
}