diff --git a/src/app/page.tsx b/src/app/page.tsx index 5c07a31..7128a9f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,6 +13,13 @@ import FooterBase from '@/components/sections/footer/FooterBase'; import { Award, Sparkles, Star, CheckCircle, Zap } from 'lucide-react'; export default function LandingPage() { + const handleContactSubmit = (email: string) => { + // Send quote request to Bestpricetrashhauling@gmail.com + const subject = encodeURIComponent("Quote Request from Best Price Trash Hauling Website"); + const body = encodeURIComponent(`Contact Email: ${email}\n\nPlease provide a quote for our junk removal services.`); + window.location.href = `mailto:Bestpricetrashhauling@gmail.com?subject=${subject}&body=${body}`; + }; + return ( @@ -244,7 +252,7 @@ export default function LandingPage() { { title: "Contact", items: [ { label: "πŸ“ž Call Now", href: "tel:+1-800-TRASH-01" }, - { label: "πŸ“§ Email Us", href: "mailto:info@bestpricetrashauling.com" }, + { label: "πŸ“§ Email Us", href: "mailto:Bestpricetrashhauling@gmail.com" }, { label: "πŸ—ΊοΈ Service Area", href: "#" }, { label: "πŸ“‹ Get a Quote", href: "#contact" } ] @@ -262,4 +270,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file