import useBodyClasses from '@/hooks/useBodyClasses'; import { toAbsoluteUrl } from '@/utils'; import { Link } from 'react-router-dom'; import { Fragment } from 'react/jsx-runtime'; const Error404Page = () => { useBodyClasses('dark:bg-coal-500'); return (
image image
404 Error

We have lost this page

The requested page is missing. Check the URL or  Return Home .
); }; export { Error404Page };