mirror of
https://github.com/yude-jp/yude.jp
synced 2024-11-05 01:48:01 +09:00
29 lines
706 B
JavaScript
29 lines
706 B
JavaScript
// Base layout
|
|
import Layout from "./components/Layout"
|
|
|
|
// React Router
|
|
import { useRouter } from 'next/router'
|
|
|
|
// Next.js
|
|
import Link from 'next/link'
|
|
import useTranslation from 'next-translate/useTranslation'
|
|
|
|
export default function Custom404(props) {
|
|
const router = useRouter()
|
|
const { locale, locales, defaultLocale, pathname } = router
|
|
const { t, lang } = useTranslation("404")
|
|
|
|
return (
|
|
<Layout title="404">
|
|
<div className="text-center mb-10 mt-10">
|
|
<p className="text-3xl">404</p>
|
|
<p className="text-xl">{t('caption')}</p>
|
|
<Link href="/">
|
|
<a>
|
|
<p className="mt-5">{t('return')}</p>
|
|
</a>
|
|
</Link>
|
|
</div>
|
|
</Layout>
|
|
)
|
|
} |