blob: 03ae39a4fb5045e5d94b48a7ef013cdbab3c09c1 (
plain)
1
2
3
4
5
6
7
8
|
export default function Home() {
return (
<main className="container mx-auto px-4 py-16 text-center">
<h1 className="text-4xl font-bold tracking-tight">whois.band</h1>
<p className="mt-4 text-gray-400">Band identification service. Coming soon.</p>
</main>
);
}
|