Files
v0-v0app/app/page.tsx
v0 da55b8b7dd 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>
2025-06-19 22:07:32 +00:00

10 lines
326 B
TypeScript

// app/page.tsx
export default function HomePage() {
return (
<main className="flex min-h-screen flex-col items-center justify-center gap-4">
<h1 className="text-3xl font-bold">Markdown Editor</h1>
<p className="text-muted-foreground">Your application is up and running. Start editing!</p>
</main>
)
}