import { Link } from '@/i18n/navigation'; import { Flex, Text, Button, VStack, Heading } from '@chakra-ui/react'; import { getTranslations } from 'next-intl/server'; export default async function NotFoundPage() { const t = await getTranslations(); return ( {t('error.404')} {t('error.not-found')} ); }