web-humas-fe/components/layout/PPIDLayout.tsx

26 lines
644 B
TypeScript
Raw Normal View History

2024-02-05 09:37:05 +00:00
"use client";
import React from "react";
import { PPIDNavbar } from "../Portal PPID/ppid-navbar";
import PPIDBanner from "../Portal PPID/ppid-banner";
import PPIDbody from "../Portal PPID/PpidMain";
2024-02-19 08:39:35 +00:00
import NavbarHumas from "../navbar/NavbarHumas";
import Footer from "../Landing Page/Footer";
import NavbarPPID from "../navbar/NavbarPPID";
2024-02-05 09:37:05 +00:00
interface Props {
children: React.ReactNode;
pageTitle?: string;
}
export const PPIDLayout = ({ children, pageTitle }: Props) => {
return (
<section>
2024-02-19 08:39:35 +00:00
<NavbarPPID />
2024-02-05 09:37:05 +00:00
<PPIDBanner />
<PPIDbody />
2024-02-19 08:39:35 +00:00
<Footer />
2024-02-05 09:37:05 +00:00
</section>
);
};