blob: 314714e0919fec72fba64a6e55fc905eb5ccfef5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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 PageError() {
return (
<BasicLayout>
<Seo title='Internal Server Error - Indoteknik.com' />
<div className='container mx-auto'>
<Image
src='/images/page-error.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>
)
}
|