import Link from 'next/link'; import { ArrowLeftIcon } from '@radix-ui/react-icons'; import { Button } from '@kit/ui/button'; import { Heading } from '@kit/ui/heading'; import { Trans } from '@kit/ui/trans'; import { SiteHeader } from '~/(marketing)/components/site-header'; import appConfig from '~/config/app.config'; import { withI18n } from '~/lib/i18n/with-i18n'; export const metadata = { title: `Page not found - ${appConfig.name}`, }; const NotFoundPage = () => { return (

404 :(

); }; export default withI18n(NotFoundPage);