From b144b276809480a3b7eb012d057c543793b68979 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 22:17:45 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 47 +++++++++++++++------------------------- 1 file changed, 17 insertions(+), 30 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 2ab25a3..c8b95b5 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -8,6 +8,10 @@ import MediaAbout from '@/components/sections/about/MediaAbout'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; export default function LandingPage() { + const handleFormSubmit = (email: string) => { + window.location.href = `mailto:printpop.shirtdesign@gmail.com?subject=New Custom Order Request&body=Email: ${email}`; + }; + return ( @@ -46,15 +44,14 @@ export default function LandingPage() { {}, }, ]} /> @@ -73,29 +70,19 @@ export default function LandingPage() { ); -} +} \ No newline at end of file