diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 22672e1..77f2c12 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -29,7 +29,6 @@ export default function AboutPage() { items: [ { label: "About Us", href: "/about" }, { label: "Contact", href: "/contact" }, - { label: "Blog", href: "/blog" }, ], }, { @@ -48,6 +47,10 @@ export default function AboutPage() { }, ]; + const handleContactSubmit = (email: string) => { + console.log("Partnership inquiry:", email); + }; + return ( window.location.href = "/contact" }, ]} /> @@ -114,6 +117,7 @@ export default function AboutPage() { inputPlaceholder="Your email address" buttonText="Schedule Now" termsText="We respect your privacy. Your inquiry will be handled with complete confidentiality." + onSubmit={(email: string) => handleContactSubmit(email)} /> @@ -125,4 +129,4 @@ export default function AboutPage() { ); -} \ No newline at end of file +}