2025-07-09 12:01:06 +05:30

36 lines
1.0 KiB
TypeScript

import Layout from "@/components/layout/Layout"
import Section1 from "@/components/online/thaipongal2025/Section1"
import Section2 from "@/components/online/thaipongal2025/Section2"
import Section3 from "@/components/online/thaipongal2025/Section3"
import Link from "next/link"
export default function membership2025() {
return (
<>
<Layout headerStyle={1} footerStyle={1}>
<div>
<div className="inner-page-header" style={{ backgroundImage: 'url(/assets/img/online/banners/pongal.webp)' }}>
<div className="container">
<div className="row">
<div className="col-lg-5 m-auto">
<div className="heading1 text-center">
<h1>THAI PONGAL</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 />
</div>
</Layout>
</>
)
}