Files
shadow-gunbuilder-ai-proto/app/not-found.tsx
T

41 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import Link from "next/link";
export default function NotFound() {
return (
<main className="min-h-screen bg-black text-zinc-50 flex items-center justify-center px-4">
<div className="max-w-md text-center">
<p className="text-xs font-semibold tracking-[0.3em] uppercase text-zinc-500">
Battl Builders
</p>
<h1 className="mt-4 text-4xl font-semibold tracking-tight">
Page Not Found
</h1>
<p className="mt-3 text-sm text-zinc-400">
This area of the site isnt publicly accessible yet.
</p>
<div className="mt-6 flex justify-center gap-3">
<Link
href="/"
className="rounded-md bg-amber-400 px-4 py-2 text-sm font-semibold text-black hover:bg-amber-300 transition-colors"
>
Go Home
</Link>
{/* <a
href="https://battl.builders"
className="rounded-md border border-zinc-700 px-4 py-2 text-sm font-medium text-zinc-300 hover:bg-zinc-900 hover:border-zinc-600 transition-colors"
>
Learn More
</a> */}
</div>
<p className="mt-6 text-[11px] text-zinc-600">
Early access features are launching soon.
</p>
</div>
</main>
);
}