blob: 18560999ee87c090711dbd691fa3a444ae9f4d06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import Seo from '@/core/components/Seo'
import Link from '@/core/components/elements/Link/Link'
import BasicLayout from '@/core/components/layouts/BasicLayout'
import Image from 'next/image'
export default function PageNotFound() {
return (
<BasicLayout>
<Seo title='Halaman tidak ditemukan - Indoteknik.com' />
<div className='container mx-auto'>
<Image
src='/images/page-not-found.svg'
alt='Page not found - Indoteknik'
className='w-full'
width={1024}
height={512}
/>
<Link href='/' className='btn-yellow !text-black mx-auto mt-4'>
Kembali ke halaman utama
</Link>
</div>
</BasicLayout>
)
}
|