2025-07-02 11:47:23 +05:30

27 lines
903 B
TypeScript

'use client'
import Layout from "@/components/layout/Layout";
import Section1 from "@/components/about/committee/Section1"; // adjust path if needed
export default function CommitteePage() {
return (
<Layout headerStyle={1} footerStyle={1}>
<div className="inner-page-header" style={{ backgroundImage: "url(../assets/img/bg/header-bg6.png)" }}>
<div className="container">
<div className="row">
<div className="col-lg-5 m-auto">
<div className="heading1 text-center">
<h1>Committee</h1>
<div className="space20" />
<a href="/">Home <i className="fa-solid fa-angle-right" /> <span>Committee</span></a>
</div>
</div>
</div>
</div>
</div>
{/* Injecting Section1 which has dynamic communityData logic */}
<Section1 />
</Layout>
);
}