IndustryPage.js
707 Bytes
import React from "react";
import PageBanner from "@/components/reuseables/PageBanner";
import Education from "./Education";
import LifeSciences from "./LifeSciences";
import Technology from "./Technology";
import RealEstate from "./RealEstate";
import Hospitality from "./Hospitality";
const banners = [
{
imageSrc: "/images/page-title-bg.jpg",
pageTitle: "Industry",
homePageUrl: "/",
homePageText: "Home",
activePageText: "Industry",
},
];
const IndustryPage = () => {
return (
<>
<PageBanner banners={banners} />
<Education />
<LifeSciences />
<Technology />
<RealEstate />
<Hospitality />
</>
);
};
export default IndustryPage;