IndustryPage.js 584 Bytes
import React from "react";
import PageBanner from "@/components/reuseables/PageBanner";
import Education from "./Education";
import LifeSciences from "./LifeSciences";
import Technology from "./Technology";

const banners = [
  {
    imageSrc: "/images/page-title-bg.jpg",
    pageTitle: "Industry",
    homePageUrl: "/",
    homePageText: "Home",
    activePageText: "Industry",
  },
];
const IndustryPage = () => {
  return (
    <>
      <PageBanner banners={banners} />
      <Education />
      <LifeSciences />
      <Technology />
    </>
  );
};

export default IndustryPage;