import { Link } from "react-router-dom"; const NotFoundPage = () => { return (
{/* Placeholder SVG - Replace this with your SVG */} 404 Not Found {/* Page number and title */}

Page Not Found

{/* Description text */}

Sorry, we couldn't find the page you were looking for. It may have been moved or deleted.

{/* Call-to-action button */} Go Home
); }; export default NotFoundPage;