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

View File

@@ -1,7 +1,9 @@
"use client"
import config from "../tailwind.config"
export default function SyntheticV0PageForDeployment() {
return <config />
}
// 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>
)
}