Initial commit, repo migration

This commit is contained in:
unknown
2024-05-14 22:19:14 +07:00
commit b51b940ac4
137 changed files with 19393 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import { Belakang } from '@/components/Layouts'
import { Judul } from '@/components/TextCustom'
import Head from 'next/head'
import Image from 'next/image'
export default function Peraturan() {
return (
<>
<Head>
<title>Peraturan</title>
</Head>
<Belakang>
<Judul>Peraturan</Judul>
<div className='flex justify-center'>
<Image src={'/img/coming-soon.png'} alt='coming-soon' width={600} height={600} />
</div>
</Belakang>
</>
)
}