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