import Container from "@/components/ui/Container";
import { ButtonLink } from "@/components/ui/Button";

export default function NotFound() {
  return (
    <section className="py-24">
      <Container className="max-w-lg mx-auto text-center">
        <h1 className="font-display text-3xl text-neutral-900">Page not found</h1>
        <p className="mt-4 text-neutral-600">The page you&apos;re looking for doesn&apos;t exist or has moved.</p>
        <div className="mt-8">
          <ButtonLink href="/">Back to Home</ButtonLink>
        </div>
      </Container>
    </section>
  );
}
