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

export default function NotFound() {
  return (
    <section className="bg-cream">
      <div className="container-page flex min-h-[60vh] flex-col items-center justify-center py-20 text-center">
        <p className="font-display text-6xl font-bold text-brand-300">404</p>
        <h1 className="mt-4 font-display text-2xl font-bold text-ink-900">
          We couldn&apos;t find that page
        </h1>
        <p className="mt-3 max-w-md text-ink-600">
          The page may have moved. Try the homepage or get in touch and we will point you
          in the right direction.
        </p>
        <div className="mt-8 flex flex-wrap justify-center gap-3">
          <Button href="/" withArrow>
            Back to home
          </Button>
          <Button href="/contact" variant="secondary">
            Contact us
          </Button>
        </div>
      </div>
    </section>
  );
}
