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 ( - + -
- -
+
+ +
- + - +
);