diff --git a/src/app/contact/ContactForm.tsx b/src/app/contact/ContactForm.tsx index c7bd1c9..4f1f9c1 100644 --- a/src/app/contact/ContactForm.tsx +++ b/src/app/contact/ContactForm.tsx @@ -1,6 +1,7 @@ 'use client'; import { useState } from 'react'; import { FaRegCircleCheck } from "react-icons/fa6"; +import { Button } from '@/components/Button'; export default function ContactForm() { const [formData, setFormData] = useState({ @@ -106,12 +107,11 @@ export default function ContactForm() {
- +
)} diff --git a/src/app/event/[slug]/page.tsx b/src/app/event/[slug]/page.tsx index 0dff7a4..64e6583 100644 --- a/src/app/event/[slug]/page.tsx +++ b/src/app/event/[slug]/page.tsx @@ -125,23 +125,21 @@ export default async function EventPage({ -
+ {event.photos?.length &&

Event photos and highlights

- {[1, 2, 3, 4, 5, 6].map((value) => ( + {event.photos.map((src) => (
event photo
-
+
} ); } diff --git a/src/app/events/page.tsx b/src/app/events/page.tsx index e1ed108..ba76c71 100644 --- a/src/app/events/page.tsx +++ b/src/app/events/page.tsx @@ -101,9 +101,7 @@ export default async function EventsPage() { ))} Past and Upcoming Events - } + title="Past and Upcoming Events" />
{ - const baseClasses = 'inline-flex items-center justify-center px-6 py-2.5 rounded-3xl transition-opacity duration-300 disabled:opacity-50 disabled:cursor-not-allowed'; + const baseClasses = 'inline-flex items-center justify-center px-6 py-2.5 rounded-3xl transition-opacity duration-300 disabled:opacity-50 disabled:cursor-not-allowed cursor-pointer'; const variantClasses = { primary: 'bg-color-01 text-white hover:opacity-90 shadow-sm',