21 lines
549 B
JavaScript
Raw Normal View History

2024-05-14 22:19:14 +07:00
import { Belakang } from '@/components/Layouts'
import { Judul } from '@/components/TextCustom'
import Head from 'next/head'
import Image from 'next/image'
export default function PengendalianWaktuPenyelesaian() {
return (
<>
<Head>
<title>Laporan Pengendalian Waktu Penyelesaian</title>
</Head>
<Belakang>
<Judul>Laporan Pengendalian Waktu Penyelesaian</Judul>
<div className='flex justify-center'>
<Image src={'/img/coming-soon.png'} alt='coming-soon' width={600} height={600} />
</div>
</Belakang>
</>
)
}