web-humas-fe/app/portal-ppid/page.tsx

23 lines
581 B
TypeScript
Raw Normal View History

2024-02-05 09:37:05 +00:00
'use client'
2024-03-02 15:25:48 +00:00
import FooterPPID from '@/components/Portal PPID/FooterPPID';
2024-02-23 12:34:32 +00:00
import PPIDbody from '@/components/Portal PPID/PpidMain';
import PPIDBanner from '@/components/Portal PPID/ppid-banner';
2024-03-02 15:25:48 +00:00
import NavbarPPID from '@/components/navbar/NavbarPPID';
2024-02-05 09:37:05 +00:00
import { usePathname } from 'next/navigation';
2024-02-27 03:30:15 +00:00
import React from 'react';
2024-02-05 09:37:05 +00:00
2024-03-08 03:28:18 +00:00
export default function PortalPPID() {
2024-02-05 09:37:05 +00:00
const pathname = usePathname();
console.log(pathname)
return (
2024-02-23 12:34:32 +00:00
<>
2024-03-02 15:25:48 +00:00
<NavbarPPID />
2024-02-23 12:34:32 +00:00
<PPIDBanner />
<PPIDbody />
2024-03-02 15:25:48 +00:00
<FooterPPID />
2024-02-23 12:34:32 +00:00
</>
2024-02-05 09:37:05 +00:00
)
}