import { MdControlCamera } from 'react-icons/md';
import { PageLayoutInfoCenter } from '@/components/Layout/PageLayoutInfoCenter';
import { TopBar } from '@/components/TopBar/TopBar';
import { Flex, Link, Text } from '@/ui';
export const Error404 = () => {
return (
<>
Erreur 404
Cette page n'existe plus ou l'URL a changé.
Retour à l'accueil
>
);
};