From 0fb56594d913ba985c8a77d765eb598e28b7db69 Mon Sep 17 00:00:00 2001 From: Jake Date: Tue, 16 Sep 2025 03:07:19 +0200 Subject: [PATCH 1/3] Tweak Events title width --- src/app/events/page.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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" />
Date: Tue, 16 Sep 2025 03:17:38 +0200 Subject: [PATCH 2/3] Hook up event photos --- src/app/event/[slug]/page.tsx | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) 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
-
+
} ); } From 30ff7370fa902b732fa31a0370fff001d21b36de Mon Sep 17 00:00:00 2001 From: Jake Date: Tue, 16 Sep 2025 03:22:35 +0200 Subject: [PATCH 3/3] Use Button component in contact form --- src/app/contact/ContactForm.tsx | 6 +++--- src/components/Button.tsx | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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/components/Button.tsx b/src/components/Button.tsx index ebb5140..c2f7f1d 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -15,7 +15,7 @@ export const Button = ({ href, ...props }: ButtonProps) => { - 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',