Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 114acb7a19 | |||
| cc66b1e9b8 | |||
| b0a1dba1a2 |
@@ -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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
@@ -146,16 +153,16 @@ export default function LandingPage() {
|
||||
description="See why homeowners, renters, and landlords trust Best Price Trash Hauling."
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", title: "Phenomenal Service", quote: "Patrick and his crew did a phenomenal job clearing debris from our home, all at an affordable price. Customer service is second to none. I wouldn't hesitate to hire them again.", name: "Matt Allen", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/amazing-beautiful-redhead-young-lady-sitting-cafe_171337-15285.jpg", imageAlt: "professional headshot business man"
|
||||
id: "1", title: "Phenomenal Service", quote: "Patrick and his crew did a phenomenal job clearing debris from our home, all at an affordable price. Customer service is second to none. I wouldn't hesitate to hire them again.", name: "Matt Allen", role: "Homeowner"
|
||||
},
|
||||
{
|
||||
id: "2", title: "Great Value", quote: "Great junk removal service. He used his truck instead of a dumpster which lowered the price. Even helped dismantle everything. Super efficient.", name: "Jack W", role: "Property Owner", imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-blond-female-dressed-white-shirt-red-eyeglasses_613910-3571.jpg", imageAlt: "professional headshot woman"
|
||||
id: "2", title: "Great Value", quote: "Great junk removal service. He used his truck instead of a dumpster which lowered the price. Even helped dismantle everything. Super efficient.", name: "Jack W", role: "Property Owner"
|
||||
},
|
||||
{
|
||||
id: "3", title: "Professional & Kind", quote: "Patrick and his team are the best. They worked with my budget and were professional and kind. Highly recommend!", name: "Glenda Nunez", role: "Renter", imageSrc: "http://img.b2bpic.net/free-photo/modern-man-with-coffee_23-2147961596.jpg", imageAlt: "mature adult professional portrait"
|
||||
id: "3", title: "Professional & Kind", quote: "Patrick and his team are the best. They worked with my budget and were professional and kind. Highly recommend!", name: "Glenda Nunez", role: "Renter"
|
||||
},
|
||||
{
|
||||
id: "4", title: "Quick & Efficient", quote: "Affordable, quick, and efficient. The stress of clutter is gone! 10/10 recommend!", name: "Maria Hall", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/young-blonde-woman-wearing-casual-blue-shirt-success-sign-doing-positive-gesture-with-hand-thumbs-up-smiling-happy-cheerful-expression-winner-gesture_839833-2022.jpg", imageAlt: "young professional woman portrait"
|
||||
id: "4", title: "Quick & Efficient", quote: "Affordable, quick, and efficient. The stress of clutter is gone! 10/10 recommend!", name: "Maria Hall", role: "Homeowner"
|
||||
}
|
||||
]}
|
||||
textboxLayout="default"
|
||||
@@ -208,12 +215,12 @@ export default function LandingPage() {
|
||||
tagAnimation="opacity"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={true}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-man-using-tablet-outdoors_23-2150747667.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Get a Free Quote"
|
||||
termsText="By clicking Get a Free Quote, you're confirming that you agree with our Terms and Conditions."
|
||||
onSubmit={handleContactSubmit}
|
||||
ariaLabel="Contact Best Price Trash Hauling"
|
||||
/>
|
||||
</div>
|
||||
@@ -244,7 +251,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 +269,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user