From fab941666d65a420066f29fd4697fb82f8f42e68 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 4 Apr 2026 21:19:10 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 130 ++++++++++++++++++--------------------- 1 file changed, 61 insertions(+), 69 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 24ae202..913ed40 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -6,83 +6,75 @@ import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterMedia from '@/components/sections/footer/FooterMedia'; import LegalSection from '@/components/legal/LegalSection'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import Link from "next/link"; + +export default function ContactPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Events", id: "/events" }, + { name: "Contact", id: "/contact" }, + ]; -export default function LandingPage() { return ( - + -
- -
+
+ +
- + - +
); -- 2.49.1