2026-06-28 02:06:56 +02:00
|
|
|
function App() {
|
2026-06-28 02:16:41 +02:00
|
|
|
return (
|
|
|
|
|
<div className="flex min-h-screen flex-col items-center justify-center gap-4 font-mono">
|
|
|
|
|
<h1 className="text-primary text-4xl font-bold uppercase tracking-widest">
|
|
|
|
|
BUCKETS
|
|
|
|
|
</h1>
|
|
|
|
|
<p className="font-digital text-primary text-2xl">1234567890</p>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
2026-06-28 02:06:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default App
|