constitution structure updated
This commit is contained in:
parent
6c5b26565e
commit
e3bc82d334
@ -3,7 +3,7 @@
|
|||||||
import Layout from '@/components/layout/Layout';
|
import Layout from '@/components/layout/Layout';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import Link from 'next/link';
|
import Link from 'next/link';
|
||||||
import { useSearchParams } from 'next/navigation';
|
import { useSearchParams, useRouter } from 'next/navigation';
|
||||||
import { useEffect, useState } from 'react';
|
import { useEffect, useState } from 'react';
|
||||||
import Lightbox from "yet-another-react-lightbox";
|
import Lightbox from "yet-another-react-lightbox";
|
||||||
import "yet-another-react-lightbox/styles.css";
|
import "yet-another-react-lightbox/styles.css";
|
||||||
@ -18,6 +18,7 @@ interface EventImage {
|
|||||||
export default function SingleGallery() {
|
export default function SingleGallery() {
|
||||||
const searchParams = useSearchParams();
|
const searchParams = useSearchParams();
|
||||||
const eventId = searchParams.get('id');
|
const eventId = searchParams.get('id');
|
||||||
|
const router = useRouter();
|
||||||
|
|
||||||
const [eventImages, setEventImages] = useState<EventImage[]>([]);
|
const [eventImages, setEventImages] = useState<EventImage[]>([]);
|
||||||
const [open, setOpen] = useState(false);
|
const [open, setOpen] = useState(false);
|
||||||
@ -78,10 +79,15 @@ export default function SingleGallery() {
|
|||||||
<div className="container">
|
<div className="container">
|
||||||
<div className="row">
|
<div className="row">
|
||||||
<div className="col-lg-12 m-auto">
|
<div className="col-lg-12 m-auto">
|
||||||
<div className="event2-header heading5 space-margin60">
|
<div className="event2-header heading5 space-margin60 d-flex justify-content-between align-items-center">
|
||||||
<h2 className="text-anime-style-3">
|
<h2 className="text-anime-style-3 mb-0">Photos Gallery</h2>
|
||||||
Photos Gallery
|
<button
|
||||||
</h2>
|
onClick={() => router.back()}
|
||||||
|
className="vl-btn3"
|
||||||
|
style={{ padding: '10px 16px' }}
|
||||||
|
>
|
||||||
|
Back
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -24,16 +24,19 @@ export default function Section1() {
|
|||||||
<div className="space20" />
|
<div className="space20" />
|
||||||
<div className="space20" />
|
<div className="space20" />
|
||||||
|
|
||||||
|
<div className="about6-section-area sp4">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
<div className="col-lg-6 order-2 order-lg-1">
|
||||||
|
<div className="img2">
|
||||||
|
<img src="/assets/img/tamil-festivals-banner/hindu/pongal.webp" alt="" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 order-1 order-lg-2 mb-5">
|
||||||
|
<div className="about7-header heading9">
|
||||||
<div className="heading2">
|
<div className="heading2">
|
||||||
<h3>1. ARTICLE</h3>
|
<h3>1. ARTICLE</h3>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="row">
|
|
||||||
<div className="col-lg-12">
|
|
||||||
<div className="mission">
|
|
||||||
<div className="space18" />
|
|
||||||
<h4 className='custom-text aos-init aos-animate'>1.1 Definitions</h4>
|
<h4 className='custom-text aos-init aos-animate'>1.1 Definitions</h4>
|
||||||
|
|
||||||
<ul className="list-unstyled ps-0">
|
<ul className="list-unstyled ps-0">
|
||||||
@ -70,6 +73,19 @@ export default function Section1() {
|
|||||||
<img src="/assets/img/icons/check2.svg" alt="" className="me-2" style={{ width: '20px', height: '20px', marginTop: '3px' }} />
|
<img src="/assets/img/icons/check2.svg" alt="" className="me-2" style={{ width: '20px', height: '20px', marginTop: '3px' }} />
|
||||||
“Corporation” means the corporation that has passed these by-laws under the Act or that is deemed to have passed these by-laws under the Act.
|
“Corporation” means the corporation that has passed these by-laws under the Act or that is deemed to have passed these by-laws under the Act.
|
||||||
</li>
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="about6-section-area sp4">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
<div className="col-lg-6 order-2 order-lg-1 mb-5">
|
||||||
|
<div className="about7-header heading9">
|
||||||
|
<ul className="list-unstyled ps-0">
|
||||||
<li className="d-flex align-items-start mb-2">
|
<li className="d-flex align-items-start mb-2">
|
||||||
<img src="/assets/img/icons/check2.svg" alt="" className="me-2" style={{ width: '20px', height: '20px', marginTop: '3px' }} />
|
<img src="/assets/img/icons/check2.svg" alt="" className="me-2" style={{ width: '20px', height: '20px', marginTop: '3px' }} />
|
||||||
“Association” means the Corporation in this context.
|
“Association” means the Corporation in this context.
|
||||||
@ -105,8 +121,16 @@ export default function Section1() {
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="col-lg-6 order-1 order-lg-2">
|
||||||
|
<div className="img2">
|
||||||
|
<img src="/assets/img/tamil-festivals-banner/hindu/pongal-2.webp" alt="" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -20317,6 +20317,19 @@ html {
|
|||||||
padding: 12px 10px;
|
padding: 12px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.about7-header ul li {
|
||||||
|
color: #000;
|
||||||
|
font-family: var(--grotesk);
|
||||||
|
font-size: var(--ztc-font-size-font-s18);
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: var(--ztc-weight-medium);
|
||||||
|
line-height: 28px;
|
||||||
|
display: inline-block;
|
||||||
|
transition: all 0.4s;
|
||||||
|
border-radius: 4px;
|
||||||
|
padding: 12px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
@media (max-width: 767px) {
|
@media (max-width: 767px) {
|
||||||
.cta1-section-area .cta1-main-boxarea ul li a {
|
.cta1-section-area .cta1-main-boxarea ul li a {
|
||||||
line-height: 32px;
|
line-height: 32px;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user