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 +}