From c2c2c5e4ada0b4b347b256f76f13660fe6b085b9 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 12 Jun 2026 21:25:08 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index d73f0b9..3ebbce7 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -26,9 +26,9 @@ export default function WebAgency2ContactPage() { navItems={[ { name: "Work", id: "work" }, { name: "Services", id: "services" }, - { name: "About", href: "/about" }, - { name: "Team", href: "/team" }, - { name: "Contact", href: "/contact" } + { name: "About", id: "/about" }, + { name: "Team", id: "/team" }, + { name: "Contact", id: "/contact" } ]} button={{ text: "Get Started", href: "/contact" }} /> @@ -40,6 +40,7 @@ export default function WebAgency2ContactPage() { buttonText="Send Message" onSubmit={(email) => console.log('Contact form submitted with email:', email)} centered={true} + useInvertedBackground={false} /> ); -} \ No newline at end of file +}