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

export default function NotFound() {
  return (
    <section className="py-32">
      <Container className="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're looking for may have moved or no longer exists.
        </p>
        <div className="mt-8">
          <ButtonLink href="/">Back to Home</ButtonLink>
        </div>
      </Container>
    </section>
  );
}
