chore: remove vetrsion

This commit is contained in:
Maulana Sodiqin
2025-11-24 12:51:41 +07:00
parent f5905c0acc
commit efdbc65be6
23 changed files with 432 additions and 8 deletions
+19
View File
@@ -0,0 +1,19 @@
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>
);
}