feat: 💨
This commit is contained in:
parent
3878b84f4c
commit
35df916a19
17 changed files with 183 additions and 208 deletions
12
src/components/NotFound/index.tsx
Normal file
12
src/components/NotFound/index.tsx
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import { useTranslation } from 'react-i18next'
|
||||
|
||||
export default function NotFound() {
|
||||
const { t } = useTranslation()
|
||||
|
||||
return (
|
||||
<div className="text-muted-foreground w-full h-full flex flex-col items-center justify-center gap-2">
|
||||
<div>{t('Lost in the void')} 🌌</div>
|
||||
<div>(404)</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue