deckhearth/pages/index.js

14 lines
380 B
JavaScript
Raw Normal View History

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>
);
}