2026-03-09 19:08:36 +05:30

42 lines
1.2 KiB
TypeScript

import type { Metadata } from "next"
export const metadata: Metadata = {
title: "Cultural Performance Registration | Apply Now",
description: "Apply to perform at Tamil cultural events and showcase your talent on stage.",
};
import Layout from "@/components/layout/Layout"
import Section1 from "@/components/online/performance/Section1"
import Section2 from "@/components/online/performance/Section2"
import Section3 from "@/components/online/performance/Section3"
import Link from "next/link"
export default function performance() {
return (
<>
<Layout headerStyle={1} footerStyle={1}>
<div>
<div className="inner-page-header" style={{ backgroundImage: 'url(/assets/img/online/banners/ppr.webp)' }}>
<div className="container">
<div className="row">
<div className="col-lg-12 m-auto">
<div className="heading1">
<h1>Program Performance Registration</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>
</>
)
}