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

38 lines
1.6 KiB
JavaScript

import Layout from "@/components/layout/Layout"
import Section1 from "@/components/online/sponsor/Section1"
import Section2 from "@/components/online/sponsor/Section2"
import Section3 from "@/components/online/sponsor/Section3"
import Section4 from "@/components/online/sponsor/Section4"
import Link from "next/link"
export default function sponsor() {
return (
<>
<Layout headerStyle={1} footerStyle={1}>
<div>
<div className="inner-page-header" style={{ backgroundImage: 'url(../assets/img/online/banners/sponsor.webp)' }}>
<div className="container">
<div className="row">
<div className="col-lg-5 m-auto">
<div className="heading1 text-center">
<h1>Sponsorship Opportunities</h1>
<div className="space20" />
<Link href="/">Home <i className="fa-solid fa-angle-right" /> <span>Online</span></Link>
</div>
</div>
</div>
</div>
</div>
<Section1 />
<Section2 />
<Section3 />
<Section4 />
</div>
</Layout>
</>
)
}