20 lines
584 B
TypeScript
20 lines
584 B
TypeScript
export default function HomePage() {
|
|||
|
|
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">
|
||
|
|
Hackathon App
|
||
|
|
</h1>
|
||
|
|
<p className="text-lg text-gray-600 mb-8">
|
||
|
|
Welcome to the Hackathon platform
|
||
|
|
</p>
|
||
|
|
<div className="space-y-4">
|
||
|
|
<p className="text-sm text-gray-500">
|
||
|
|
This is a new Vite + React app with file-based routing
|
||
|
|
</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|