not-found.tsx 682 B

12345678910111213141516171819202122
  1. import Link from "next/link";
  2. export default function NotFound() {
  3. return (
  4. <section className="py-24">
  5. <div className="container-xl text-center">
  6. <div className="text-[10px] uppercase tracking-[3px] text-[var(--color-text-muted)] mb-4">
  7. Error
  8. </div>
  9. <h1 className="mb-4 text-4xl font-semibold tracking-[-0.02em]">
  10. Page not found
  11. </h1>
  12. <p className="mb-10 text-[var(--color-text-muted)] max-w-sm mx-auto">
  13. The page you are looking for does not exist.
  14. </p>
  15. <Link href="/" className="btn-primary inline-block">
  16. Back to Home
  17. </Link>
  18. </div>
  19. </section>
  20. );
  21. }