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

23 lines
590 B
TypeScript
Raw Normal View History

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
}