21 lines
481 B
JavaScript
21 lines
481 B
JavaScript
import { Belakang } from '@/components/Layouts'
|
|
import { Judul } from '@/components/TextCustom'
|
|
import Head from 'next/head'
|
|
import Image from 'next/image'
|
|
|
|
export default function PerUser() {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Laporan Per User</title>
|
|
</Head>
|
|
<Belakang>
|
|
<Judul>Laporan Per User</Judul>
|
|
<div className='flex justify-center'>
|
|
<Image src={'/img/coming-soon.png'} alt='coming-soon' width={600} height={600} />
|
|
</div>
|
|
</Belakang>
|
|
</>
|
|
)
|
|
}
|