37 lines
1.4 KiB
JavaScript
37 lines
1.4 KiB
JavaScript
import { Head, Html, Main, NextScript } from 'next/document'
|
|
|
|
export default function Document() {
|
|
return (
|
|
<Html>
|
|
<Head>
|
|
<link rel='icon' href='/img/e-verif.png' />
|
|
<meta name='title' content='BKN RI' />
|
|
<meta name='description' content='SISTEM APLIKASI VERIFIKASI ANGGARAN BKN RI' />
|
|
|
|
<meta property='og:type' content='website' />
|
|
<meta property='og:url' content='https://www.bkn.go.id/' />
|
|
<meta property='og:title' content='BKN RI' />
|
|
<meta property='og:description' content='SISTEM APLIKASI VERIFIKASI ANGGARAN BKN RI' />
|
|
<meta property='og:image' content='https://i.ibb.co/t2Yh2Vz/logo.png' />
|
|
|
|
<meta property='twitter:card' content='summary_large_image' />
|
|
<meta property='twitter:url' content='https://www.bkn.go.id/' />
|
|
<meta property='twitter:title' content='BKN RI' />
|
|
<meta property='twitter:description' content='SISTEM APLIKASI VERIFIKASI ANGGARAN BKN RI' />
|
|
<meta property='twitter:image' content='https://i.ibb.co/t2Yh2Vz/logo.png' />
|
|
|
|
<link rel='preconnect' href='https://fonts.googleapis.com' />
|
|
<link rel='preconnect' href='https://fonts.gstatic.com' crossOrigin='true' />
|
|
<link
|
|
href='https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;600;800&display=swap'
|
|
rel='stylesheet'
|
|
/>
|
|
</Head>
|
|
<body className='bg-abu'>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
)
|
|
}
|