import { Button, Center, Flex, Text } from "@chakra-ui/react" import { Link } from "@tanstack/react-router" import { useTranslation } from "react-i18next" const NotFound = () => { const { t } = useTranslation() return ( <> {t('notFound.title')} {t('notFound.subtitle')} {t('notFound.description')}
) } export default NotFound