Error 404
We couldn't find that page
The link may be broken, or the page may have moved. Here are a few places to pick things back up.
import type { Metadata } from "next"; import Link from "next/link"; import { ArrowRight } from "lucide-react"; import { SiteFooter } from "@/components/marketing/site-footer"; import { SiteHeader } from "@/components/marketing/site-header"; import { Button } from "@/components/ui/button"; import { NO_INDEX } from "@/lib/seo"; // A 404 already carries the right status code; the meta tag is belt-and-braces // for crawlers that reach this shell through a soft link. export const metadata: Metadata = { title: "Page not found", ...NO_INDEX }; /** Popular destinations, so a bad URL still routes the visitor somewhere useful. */ const LINKS: [string, string][] = [ ["Features", "/features"], ["Pricing", "/pricing"], ["FAQ", "/faq"], ["About", "/about"], ]; export default function NotFound() { return (
Error 404
The link may be broken, or the page may have moved. Here are a few places to pick things back up.