import { Link } from "react-router-dom"; import { Button } from "@/components/ui/button"; const NotFoundPage = () => { return (

404

Page not found

The page you are looking for does not exist or has moved.

); }; export default NotFoundPage;