14 lines
No EOL
380 B
JavaScript
14 lines
No EOL
380 B
JavaScript
export default function Home() {
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-gray-50">
|
|
<div className="text-center">
|
|
<h1 className="text-4xl font-bold text-gray-900 mb-4">
|
|
TCG Vault
|
|
</h1>
|
|
<p className="text-gray-600">
|
|
Clean Next.js setup is working!
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|