2024-03-02 15:25:48 +00:00
|
|
|
'use client'
|
2024-03-15 10:19:37 +00:00
|
|
|
import PPIDSatkerMain from '@/components/Portal PPID/PPIDMainSatker';
|
|
|
|
|
import PPIDBanner from '@/components/Portal PPID/ppid-banner';
|
2024-03-20 03:14:01 +00:00
|
|
|
import FooterSatker from '@/components/navbar/FooterSatker';
|
|
|
|
|
import NavbarSatker from '@/components/navbar/NavbarSatker';
|
2024-03-02 15:25:48 +00:00
|
|
|
import { usePathname } from 'next/navigation';
|
|
|
|
|
|
|
|
|
|
export default function SatkerPage() {
|
|
|
|
|
const pathname = usePathname();
|
2024-03-15 10:19:37 +00:00
|
|
|
const url: string = pathname.split('satuan-kerja/')[1].replace(/-/g, ' ').toUpperCase();
|
2024-03-11 15:46:08 +00:00
|
|
|
|
2024-03-02 15:25:48 +00:00
|
|
|
return (
|
|
|
|
|
<div className='text-black'>
|
2024-03-20 03:14:01 +00:00
|
|
|
<NavbarSatker />
|
2024-03-15 10:19:37 +00:00
|
|
|
<PPIDBanner url={url} />
|
|
|
|
|
<PPIDSatkerMain />
|
2024-03-20 03:14:01 +00:00
|
|
|
<FooterSatker />
|
2024-03-02 15:25:48 +00:00
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|