file name changed online to register
This commit is contained in:
parent
6821a2a669
commit
74ff5b80aa
36
app/register/christmas/page.tsx
Normal file
36
app/register/christmas/page.tsx
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
import Layout from "@/components/layout/Layout"
|
||||
import Section1 from "@/components/online/christmas/Section1"
|
||||
import Section2 from "@/components/online/christmas/Section2"
|
||||
import Section3 from "@/components/online/christmas/Section3"
|
||||
import Link from "next/link"
|
||||
export default function christmas() {
|
||||
|
||||
return (
|
||||
<>
|
||||
|
||||
<Layout headerStyle={1} footerStyle={1}>
|
||||
<div>
|
||||
<div className="inner-page-header" style={{ backgroundImage: 'url(/assets/img/online/banners/christmas.webp)' }}>
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
<div className="col-lg-5 m-auto">
|
||||
<div className="heading1 text-center">
|
||||
<h1>Christmas & 2024 Year End Celebrations</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>
|
||||
</>
|
||||
)
|
||||
}
|
||||
36
app/register/community-picnic/page.tsx
Normal file
36
app/register/community-picnic/page.tsx
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
import Layout from "@/components/layout/Layout"
|
||||
import Section1 from "@/components/online/communitypicnic/Section1"
|
||||
import Section2 from "@/components/online/communitypicnic/Section2"
|
||||
import Section3 from "@/components/online/communitypicnic/Section3"
|
||||
import Link from "next/link"
|
||||
export default function communitypicnic() {
|
||||
|
||||
return (
|
||||
<>
|
||||
|
||||
<Layout headerStyle={1} footerStyle={1}>
|
||||
<div>
|
||||
<div className="inner-page-header" style={{ backgroundImage: 'url(/assets/img/online/banners/picnic.webp)' }}>
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
<div className="col-lg-5 m-auto">
|
||||
<div className="heading1 text-center">
|
||||
<h1>TCA Community Picnic 2024</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>
|
||||
</>
|
||||
)
|
||||
}
|
||||
36
app/register/kalai-vizha/page.tsx
Normal file
36
app/register/kalai-vizha/page.tsx
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
import Layout from "@/components/layout/Layout"
|
||||
import Section1 from "@/components/online/kalaivizha/Section1"
|
||||
import Section2 from "@/components/online/kalaivizha/Section2"
|
||||
import Section3 from "@/components/online/kalaivizha/Section3"
|
||||
import Link from "next/link"
|
||||
export default function kalaivizha() {
|
||||
|
||||
return (
|
||||
<>
|
||||
|
||||
<Layout headerStyle={1} footerStyle={1}>
|
||||
<div>
|
||||
<div className="inner-page-header" style={{ backgroundImage: 'url(/assets/img/online/banners/kalai-vizha.webp)' }}>
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
<div className="col-lg-5 m-auto">
|
||||
<div className="heading1 text-center">
|
||||
<h1>Kalai Vizha 2025</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>
|
||||
</>
|
||||
)
|
||||
}
|
||||
36
app/register/membership-2024/page.tsx
Normal file
36
app/register/membership-2024/page.tsx
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
import Countdown from '@/components/elements/Countdown'
|
||||
import Layout from "@/components/layout/Layout"
|
||||
import Link from "next/link"
|
||||
import Section1 from "@/components/online/membership2024/Section1"
|
||||
import Section2 from "@/components/online/membership2024/Section2"
|
||||
import Section3 from "@/components/online/membership2024/Section3"
|
||||
export default function Membership2024() {
|
||||
|
||||
return (
|
||||
<>
|
||||
|
||||
<Layout headerStyle={1} footerStyle={1}>
|
||||
<div>
|
||||
<div className="inner-page-header" style={{ backgroundImage: 'url(/assets/img/online/banners/membership-2024.webp)' }}>
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
<div className="col-lg-5 m-auto">
|
||||
<div className="heading1 text-center">
|
||||
<h1>Membership 2024</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>
|
||||
</>
|
||||
)
|
||||
}
|
||||
36
app/register/membership-2025/page.tsx
Normal file
36
app/register/membership-2025/page.tsx
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
import Layout from "@/components/layout/Layout"
|
||||
import Section1 from "@/components/online/membership2025/Section1"
|
||||
import Section2 from "@/components/online/membership2025/Section2"
|
||||
import Section3 from "@/components/online/membership2025/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/membership-2025.webp)' }}>
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
<div className="col-lg-5 m-auto">
|
||||
<div className="heading1 text-center">
|
||||
<h1>Membership 2025</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>
|
||||
</>
|
||||
)
|
||||
}
|
||||
36
app/register/performance/page.tsx
Normal file
36
app/register/performance/page.tsx
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
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-5 m-auto">
|
||||
<div className="heading1 text-center">
|
||||
<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>
|
||||
</>
|
||||
)
|
||||
}
|
||||
36
app/register/registration-form/page.tsx
Normal file
36
app/register/registration-form/page.tsx
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
import Layout from "@/components/layout/Layout"
|
||||
import Section1 from "@/components/online/registrationform/Section1"
|
||||
import Section2 from "@/components/online/registrationform/Section2"
|
||||
import Section3 from "@/components/online/registrationform/Section3"
|
||||
import Link from "next/link"
|
||||
export default function registrationform() {
|
||||
|
||||
return (
|
||||
<>
|
||||
|
||||
<Layout headerStyle={1} footerStyle={1}>
|
||||
<div>
|
||||
<div className="inner-page-header" style={{ backgroundImage: 'url(/assets/img/online/banners/whatsapp-group.webp)' }}>
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
<div className="col-lg-5 m-auto">
|
||||
<div className="heading1 text-center">
|
||||
<h1>WhatsApp Group</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>
|
||||
</>
|
||||
)
|
||||
}
|
||||
38
app/register/sponsor/page.jsx
Normal file
38
app/register/sponsor/page.jsx
Normal file
@ -0,0 +1,38 @@
|
||||
|
||||
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-5 m-auto">
|
||||
<div className="heading1 text-center">
|
||||
<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>
|
||||
</>
|
||||
)
|
||||
}
|
||||
36
app/register/sports-day/page.tsx
Normal file
36
app/register/sports-day/page.tsx
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
import Layout from "@/components/layout/Layout"
|
||||
import Section1 from "@/components/online/sportsday/Section1"
|
||||
import Section2 from "@/components/online/sportsday/Section2"
|
||||
import Section3 from "@/components/online/sportsday/Section3"
|
||||
import Link from "next/link"
|
||||
export default function sportsday() {
|
||||
|
||||
return (
|
||||
<>
|
||||
|
||||
<Layout headerStyle={1} footerStyle={1}>
|
||||
<div>
|
||||
<div className="inner-page-header" style={{ backgroundImage: 'url(/assets/img/online/banners/sports-day.webp)' }}>
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
<div className="col-lg-5 m-auto">
|
||||
<div className="heading1 text-center">
|
||||
<h1>Sports Day</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>
|
||||
</>
|
||||
)
|
||||
}
|
||||
36
app/register/tamil-new-year/page.tsx
Normal file
36
app/register/tamil-new-year/page.tsx
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
import Layout from "@/components/layout/Layout"
|
||||
import Section1 from "@/components/online/tamilnewyear/Section1"
|
||||
import Section2 from "@/components/online/tamilnewyear/Section2"
|
||||
import Section3 from "@/components/online/tamilnewyear/Section3"
|
||||
import Link from "next/link"
|
||||
export default function tamilnewyear() {
|
||||
|
||||
return (
|
||||
<>
|
||||
|
||||
<Layout headerStyle={1} footerStyle={1}>
|
||||
<div>
|
||||
<div className="inner-page-header" style={{ backgroundImage: 'url(/assets/img/online/banners/tamil-new-yr.webp)' }}>
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
<div className="col-lg-5 m-auto">
|
||||
<div className="heading1 text-center">
|
||||
<h1>TAMIL NEW YEAR</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>
|
||||
</>
|
||||
)
|
||||
}
|
||||
36
app/register/thai-pongal-2025/page.tsx
Normal file
36
app/register/thai-pongal-2025/page.tsx
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
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>
|
||||
</>
|
||||
)
|
||||
}
|
||||
36
app/register/volunteer/page.tsx
Normal file
36
app/register/volunteer/page.tsx
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
import Layout from "@/components/layout/Layout"
|
||||
import Section1 from "@/components/online/volunteer/Section1"
|
||||
import Section2 from "@/components/online/volunteer/Section2"
|
||||
import Section3 from "@/components/online/volunteer/Section3"
|
||||
import Link from "next/link"
|
||||
export default function volunteer() {
|
||||
|
||||
return (
|
||||
<>
|
||||
|
||||
<Layout headerStyle={1} footerStyle={1}>
|
||||
<div>
|
||||
<div className="inner-page-header" style={{ backgroundImage: 'url(/assets/img/online/banners/event-volunteer.webp)' }}>
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
<div className="col-lg-5 m-auto">
|
||||
<div className="heading1 text-center">
|
||||
<h1>Event Volunteers</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>
|
||||
</>
|
||||
)
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user