42 lines
1.6 KiB
JavaScript
42 lines
1.6 KiB
JavaScript
export const metadata = {
|
|
title: "Sponsorship Registration | Support Our Community",
|
|
description: "Become a sponsor and support Tamil cultural programs and community initiatives.",
|
|
};
|
|
|
|
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-12 m-auto">
|
|
<div className="heading1">
|
|
<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>
|
|
</>
|
|
)
|
|
} |