2024-11-05 06:15:40 +00:00
|
|
|
"use client";
|
2024-03-08 03:28:18 +00:00
|
|
|
|
2024-11-05 06:15:40 +00:00
|
|
|
import NavbarPPID from "@/components/layout/navbar/NavbarPPID";
|
|
|
|
|
import FooterPPID from "@/components/layout/portal-ppid/FooterPPID";
|
|
|
|
|
import PPIDBanner from "@/components/layout/portal-ppid/ppid-banner";
|
|
|
|
|
import PPIDbody from "@/components/layout/portal-ppid/PpidMain";
|
|
|
|
|
import { usePathname } from "next/navigation";
|
|
|
|
|
import React from "react";
|
2024-03-15 10:19:37 +00:00
|
|
|
|
2024-03-27 12:46:08 +00:00
|
|
|
export default function PortalPPID(url: any) {
|
2024-11-05 06:15:40 +00:00
|
|
|
const pathname = usePathname();
|
|
|
|
|
console.log(pathname);
|
2024-02-05 09:37:05 +00:00
|
|
|
|
2024-11-05 06:15:40 +00:00
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<NavbarPPID />
|
|
|
|
|
<PPIDBanner url={url} />
|
|
|
|
|
<PPIDbody />
|
|
|
|
|
<FooterPPID />
|
|
|
|
|
</>
|
|
|
|
|
);
|
2024-02-05 09:37:05 +00:00
|
|
|
}
|