import { Link } from "react-router-dom"; const links = [ { name: "Pricing", href: "/pricing", description: "Checkout the price range and benefits", }, { name: "Blog", href: "/blog", description: "Read our most popular posts", }, { name: "Jobs", href: "/jobs", description: "We are always hiring", }, { name: "FAQ", href: "/faq", description: "In case you have any questions, head over here", }, ]; export default function NotFound() { return (
Your Company

This page does not exist

Sorry, we couldn’t find the page you’re looking for.

Popular pages

Back to home
); }