import React from 'react'; import { Button } from '../components/ui/Button.tsx'; const NotFoundPage: React.FC = () => { return (

404

Route not mounted.

The page you're looking for doesn't exist or has been removed.

); }; export default NotFoundPage;