40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import type { Metadata } from "next"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Tamil Festivals & Traditions | Explore Our Culture",
|
|
description: "Explore Tamil festivals celebrated in Waterloo, Ontario, and learn their cultural meaning and traditions.",
|
|
};
|
|
|
|
import Layout from "@/components/layout/Layout"
|
|
import Section1 from "@/components/tamilculture/tamil-festivals/Section1"
|
|
import Link from "next/link"
|
|
export default function TamilFestivals() {
|
|
|
|
return (
|
|
<>
|
|
|
|
<Layout headerStyle={1} footerStyle={1}>
|
|
<div>
|
|
<div className="inner-page-header" style={{ backgroundImage: 'url(/assets/img/tamil-festivals-banner/tamil-festivals-banner.webp)' }}>
|
|
<div className="container">
|
|
<div className="row">
|
|
<div className="col-lg-12 m-auto">
|
|
<div className="heading1">
|
|
<h1>Tamil Festivals</h1>
|
|
<div className="space20" />
|
|
<Link href="/">Home <i className="fa-solid fa-angle-right" /> <span>Tamil Festivals</span></Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/*===== HERO AREA ENDS =======*/}
|
|
|
|
<Section1 />
|
|
|
|
</div>
|
|
|
|
</Layout>
|
|
</>
|
|
)
|
|
} |