23 lines
509 B
TypeScript
23 lines
509 B
TypeScript
"use client";
|
|
import React from "react";
|
|
import FooterPPID from "../Portal PPID/FooterPPID";
|
|
import NavbarPPID from "../navbar/NavbarPPID";
|
|
import PPIDBanner from "../Portal PPID/ppid-banner";
|
|
|
|
interface Props {
|
|
children: React.ReactNode;
|
|
pageTitle?: string;
|
|
}
|
|
|
|
export const PPIDLayout = ({ children, pageTitle }: Props) => {
|
|
|
|
return (
|
|
<section>
|
|
<NavbarPPID />
|
|
<PPIDBanner />
|
|
{/* <PPIDbody /> */}
|
|
<FooterPPID />
|
|
</section>
|
|
);
|
|
};
|