36 lines
1.0 KiB
TypeScript
36 lines
1.0 KiB
TypeScript
'use client'
|
|
import Layout from "@/components/layout/Layout"
|
|
import Section1 from "@/components/tamilculture/tamil-festivals/hindu-festivals/Section1"
|
|
import Section2 from "@/components/tamilculture/tamil-festivals/hindu-festivals/Section2"
|
|
import Link from "next/link"
|
|
export default function HinduFestivals() {
|
|
|
|
return (
|
|
<>
|
|
|
|
<Layout headerStyle={1} footerStyle={1}>
|
|
<div>
|
|
<div className="inner-page-header" style={{ backgroundImage: 'url(/assets/img/bg/header-bg5.png)' }}>
|
|
<div className="container">
|
|
<div className="row">
|
|
<div className="col-lg-4 m-auto">
|
|
<div className="heading1 text-center">
|
|
<h1>Hindu Festivals</h1>
|
|
<div className="space20" />
|
|
<Link href="/">Home <i className="fa-solid fa-angle-right" /> <span>Hindu Festivals </span></Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/*===== HERO AREA ENDS =======*/}
|
|
|
|
<Section1 />
|
|
<Section2 />
|
|
|
|
</div>
|
|
|
|
</Layout>
|
|
</>
|
|
)
|
|
} |