Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 72976c8986 | |||
| 0d83f95d98 | |||
| ed9268fdc5 | |||
| 49b6e38c9e | |||
| e7e1665614 | |||
| 3589894743 | |||
| cf48fa1eac | |||
| 182a8346ac | |||
| 5d06b59b64 | |||
| e278ccaa64 | |||
| 751a7f00b5 |
188
src/app/page.tsx
188
src/app/page.tsx
@@ -14,6 +14,32 @@ import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCar
|
||||
import { Award, Clock, Users, Wrench, Zap, Shield, Droplets } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
const handleCallNow = () => {
|
||||
window.location.href = "tel:5867959955";
|
||||
};
|
||||
|
||||
const handleRequestService = async (email: string) => {
|
||||
if (!email || !email.includes('@')) {
|
||||
alert('Please enter a valid email address.');
|
||||
return;
|
||||
}
|
||||
try {
|
||||
const response = await fetch('/api/request-service', {
|
||||
method: 'POST',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({ email, type: 'Request Service' }),
|
||||
});
|
||||
if (response.ok) {
|
||||
alert('Service request sent successfully!');
|
||||
} else {
|
||||
alert('Failed to send request.');
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('Error:', error);
|
||||
alert('An error occurred. Please try again.');
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
@@ -31,16 +57,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "About", id: "about"},
|
||||
{
|
||||
name: "Services", id: "features"},
|
||||
{
|
||||
name: "Testimonials", id: "testimonials"},
|
||||
{
|
||||
name: "Contact", id: "contact"},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Services", id: "features" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Cut Rate Plumbing"
|
||||
/>
|
||||
@@ -48,29 +69,20 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{
|
||||
variant: "rotated-rays-animated"}}
|
||||
background={{ variant: "rotated-rays-animated" }}
|
||||
title="Fast & Affordable Plumbing Services in Michigan"
|
||||
description="Trusted local plumbers providing expert plumbing repairs, drain cleaning, sewer repair, water heater services, and emergency plumbing solutions for over 25 years."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now", href: "tel:5867959955"},
|
||||
{
|
||||
text: "Request Service", href: "#contact"},
|
||||
{ text: "Call Now", onClick: handleCallNow },
|
||||
{ text: "Request Service", href: "#contact" },
|
||||
]}
|
||||
carouselItems={[
|
||||
{
|
||||
id: "h1", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-working-as-plumber_23-2150746388.jpg?_wi=1", imageAlt: "Professional residential plumbing repair"},
|
||||
{
|
||||
id: "h2", imageSrc: "http://img.b2bpic.net/free-photo/close-up-men-working-together_23-2148752013.jpg", imageAlt: "Plumbing service van"},
|
||||
{
|
||||
id: "h3", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-working-as-plumber_23-2150746421.jpg", imageAlt: "Fixing leaking kitchen pipes"},
|
||||
{
|
||||
id: "h4", imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721516.jpg", imageAlt: "Plumbing expert working with tools"},
|
||||
{
|
||||
id: "h5", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-working_23-2149908142.jpg", imageAlt: "Residential pipe maintenance"},
|
||||
{
|
||||
id: "h6", imageSrc: "http://img.b2bpic.net/free-photo/portrait-craftsman_23-2148137743.jpg", imageAlt: "Professional plumbing solutions"},
|
||||
{ id: "h1", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-working-as-plumber_23-2150746388.jpg?_wi=1", imageAlt: "Professional residential plumbing repair" },
|
||||
{ id: "h2", imageSrc: "http://img.b2bpic.net/free-photo/close-up-men-working-together_23-2148752013.jpg", imageAlt: "Plumbing service van" },
|
||||
{ id: "h3", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-working-as-plumber_23-2150746421.jpg", imageAlt: "Fixing leaking kitchen pipes" },
|
||||
{ id: "h4", imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721516.jpg", imageAlt: "Plumbing expert working with tools" },
|
||||
{ id: "h5", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-working_23-2149908142.jpg", imageAlt: "Residential pipe maintenance" },
|
||||
{ id: "h6", imageSrc: "http://img.b2bpic.net/free-photo/portrait-craftsman_23-2148137743.jpg", imageAlt: "Professional plumbing solutions" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -80,15 +92,9 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
title="Trusted Since 1992"
|
||||
metrics={[
|
||||
{
|
||||
icon: Award,
|
||||
label: "Years Experience", value: "30+"},
|
||||
{
|
||||
icon: Users,
|
||||
label: "Happy Clients", value: "10,000+"},
|
||||
{
|
||||
icon: Clock,
|
||||
label: "Response Time", value: "24/7"},
|
||||
{ icon: Award, label: "Years Experience", value: "30+" },
|
||||
{ icon: Users, label: "Happy Clients", value: "10,000+" },
|
||||
{ icon: Clock, label: "Response Time", value: "24/7" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -99,18 +105,10 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Plumbing Repairs", description: "Leak repairs, pipe replacement, and faucet fixes.", imageSrc: "http://img.b2bpic.net/free-photo/old-weathered-tire-covered-with-moss-sand-daytime_181624-20384.jpg?_wi=1", buttonIcon: Wrench,
|
||||
},
|
||||
{
|
||||
title: "Drain Cleaning", description: "Professional snaking for kitchens and bathrooms.", imageSrc: "http://img.b2bpic.net/free-photo/person-carefully-soaping-hands-matte-black-kitchen-faucet-home-hygiene_169016-69668.jpg", buttonIcon: Zap,
|
||||
},
|
||||
{
|
||||
title: "Sewer Services", description: "Line repair, replacement, and inspection.", imageSrc: "http://img.b2bpic.net/free-photo/mechanics-repairing-car-workshop_329181-11837.jpg", buttonIcon: Shield,
|
||||
},
|
||||
{
|
||||
title: "Water Heaters", description: "Installation, repair, and tankless solutions.", imageSrc: "http://img.b2bpic.net/free-photo/view-plumber-working-fix-problems_23-2150990693.jpg", buttonIcon: Droplets,
|
||||
},
|
||||
{ title: "Plumbing Repairs", description: "Leak repairs, pipe replacement, and faucet fixes.", imageSrc: "http://img.b2bpic.net/free-photo/old-weathered-tire-covered-with-moss-sand-daytime_181624-20384.jpg?_wi=1", buttonIcon: Wrench },
|
||||
{ title: "Drain Cleaning", description: "Professional snaking for kitchens and bathrooms.", imageSrc: "http://img.b2bpic.net/free-photo/person-carefully-soaping-hands-matte-black-kitchen-faucet-home-hygiene_169016-69668.jpg", buttonIcon: Zap },
|
||||
{ title: "Sewer Services", description: "Line repair, replacement, and inspection.", imageSrc: "http://img.b2bpic.net/free-photo/mechanics-repairing-car-workshop_329181-11837.jpg", buttonIcon: Shield },
|
||||
{ title: "Water Heaters", description: "Installation, repair, and tankless solutions.", imageSrc: "http://img.b2bpic.net/free-photo/view-plumber-working-fix-problems_23-2150990693.jpg", buttonIcon: Droplets },
|
||||
]}
|
||||
title="Expert Plumbing Solutions"
|
||||
description="Comprehensive residential and commercial plumbing services delivered with quality workmanship."
|
||||
@@ -124,18 +122,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1", name: "Pipe Repair", price: "Contact for Pricing", imageSrc: "http://img.b2bpic.net/free-photo/workshop-table_23-2147773402.jpg"},
|
||||
{
|
||||
id: "p2", name: "Drain Snaking", price: "Contact for Pricing", imageSrc: "http://img.b2bpic.net/free-photo/plant-picture-clean-room-equipment-stainless-steel-machines_645730-298.jpg"},
|
||||
{
|
||||
id: "p3", name: "Sewer Line", price: "Contact for Pricing", imageSrc: "http://img.b2bpic.net/free-photo/technician-checking-heating-system-boiler-room_169016-55519.jpg"},
|
||||
{
|
||||
id: "p4", name: "Water Heater", price: "Contact for Pricing", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-working-as-plumber_23-2150746386.jpg"},
|
||||
{
|
||||
id: "p5", name: "Sump Pump", price: "Contact for Pricing", imageSrc: "http://img.b2bpic.net/free-photo/plumber-making-time-out-gesture_1368-773.jpg"},
|
||||
{
|
||||
id: "p6", name: "Emergency Pipe", price: "Contact for Pricing", imageSrc: "http://img.b2bpic.net/free-photo/technician-checking-heating-system-boiler-room_169016-55756.jpg"},
|
||||
{ id: "p1", name: "Pipe Repair", price: "Contact for Pricing", imageSrc: "http://img.b2bpic.net/free-photo/workshop-table_23-2147773402.jpg" },
|
||||
{ id: "p2", name: "Drain Snaking", price: "Contact for Pricing", imageSrc: "http://img.b2bpic.net/free-photo/plant-picture-clean-room-equipment-stainless-steel-machines_645730-298.jpg" },
|
||||
{ id: "p3", name: "Sewer Line", price: "Contact for Pricing", imageSrc: "http://img.b2bpic.net/free-photo/technician-checking-heating-system-boiler-room_169016-55519.jpg" },
|
||||
{ id: "p4", name: "Water Heater", price: "Contact for Pricing", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-working-as-plumber_23-2150746386.jpg" },
|
||||
{ id: "p5", name: "Sump Pump", price: "Contact for Pricing", imageSrc: "http://img.b2bpic.net/free-photo/plumber-making-time-out-gesture_1368-773.jpg" },
|
||||
{ id: "p6", name: "Emergency Pipe", price: "Contact for Pricing", imageSrc: "http://img.b2bpic.net/free-photo/technician-checking-heating-system-boiler-room_169016-55756.jpg" },
|
||||
]}
|
||||
title="Featured Services"
|
||||
description="Our core residential and commercial offerings."
|
||||
@@ -148,24 +140,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
plans={[
|
||||
{
|
||||
id: "std", title: "Standard Repair", price: "Custom", period: "/per service", features: [
|
||||
"Leak detection", "Fixture repair"],
|
||||
button: {
|
||||
text: "Call Now", href: "tel:5867959955"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-repair-service_181624-27146.jpg", imageAlt: "Plumbing repair service"},
|
||||
{
|
||||
id: "adv", title: "Sewer/Drain", price: "Custom", period: "/per service", features: [
|
||||
"Drain cleaning", "Sewer line inspect"],
|
||||
button: {
|
||||
text: "Call Now", href: "tel:5867959955"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-working-as-plumber_23-2150746388.jpg?_wi=2", imageAlt: "Plumbing repair service"},
|
||||
{
|
||||
id: "emg", title: "Emergency", price: "Call", period: "/24-7", features: [
|
||||
"Burst pipes", "Immediate response"],
|
||||
button: {
|
||||
text: "Call Now", href: "tel:5867959955"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/old-weathered-tire-covered-with-moss-sand-daytime_181624-20384.jpg?_wi=2", imageAlt: "Plumbing repair service"},
|
||||
{ id: "std", title: "Standard Repair", price: "Custom", period: "/per service", features: ["Leak detection", "Fixture repair"], button: { text: "Call Now", onClick: handleCallNow }, imageSrc: "http://img.b2bpic.net/free-photo/plumbing-repair-service_181624-27146.jpg" },
|
||||
{ id: "adv", title: "Sewer/Drain", price: "Custom", period: "/per service", features: ["Drain cleaning", "Sewer line inspect"], button: { text: "Call Now", onClick: handleCallNow }, imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-working-as-plumber_23-2150746388.jpg?_wi=2" },
|
||||
{ id: "emg", title: "Emergency", price: "Call", period: "/24-7", features: ["Burst pipes", "Immediate response"], button: { text: "Call Now", onClick: handleCallNow }, imageSrc: "http://img.b2bpic.net/free-photo/old-weathered-tire-covered-with-moss-sand-daytime_181624-20384.jpg?_wi=2" },
|
||||
]}
|
||||
title="Simple & Honest Pricing"
|
||||
description="Affordable solutions for your plumbing needs."
|
||||
@@ -179,21 +156,11 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1", name: "Sarah Johnson", role: "Homeowner", company: "Sterling Heights", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-businesswoman-office_329181-19343.jpg"},
|
||||
{
|
||||
id: "t2", name: "Michael Chen", role: "Business Owner", company: "Warren", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pleased-successful-female-administrator-office_273609-4124.jpg"},
|
||||
{
|
||||
id: "t3", name: "Emily Rodriguez", role: "Property Mgr", company: "Detroit", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-happy-man-showing-approval_23-2148230800.jpg"},
|
||||
{
|
||||
id: "t4", name: "David Kim", role: "Homeowner", company: "Michigan", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-overall-cap-smiling_23-2148073095.jpg"},
|
||||
{
|
||||
id: "t5", name: "Lisa Wilson", role: "Homeowner", company: "Sterling Heights", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-female-shoppers-staring-accessories-shop-window-holding-shopping-bags-standing-store-outside-front-view-through-glass-window-shopping-concept_74855-11592.jpg"},
|
||||
{ id: "t1", name: "Sarah Johnson", role: "Homeowner", company: "Sterling Heights", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-businesswoman-office_329181-19343.jpg" },
|
||||
{ id: "t2", name: "Michael Chen", role: "Business Owner", company: "Warren", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/pleased-successful-female-administrator-office_273609-4124.jpg" },
|
||||
{ id: "t3", name: "Emily Rodriguez", role: "Property Mgr", company: "Detroit", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-happy-man-showing-approval_23-2148230800.jpg" },
|
||||
{ id: "t4", name: "David Kim", role: "Homeowner", company: "Michigan", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-overall-cap-smiling_23-2148073095.jpg" },
|
||||
{ id: "t5", name: "Lisa Wilson", role: "Homeowner", company: "Sterling Heights", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/cheerful-female-shoppers-staring-accessories-shop-window-holding-shopping-bags-standing-store-outside-front-view-through-glass-window-shopping-concept_74855-11592.jpg" },
|
||||
]}
|
||||
title="What Our Clients Say"
|
||||
description="Reliable plumbing services in Sterling Heights and Warren."
|
||||
@@ -203,43 +170,22 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain"}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Contact Us"
|
||||
title="Request Service"
|
||||
description="Call us at (586) 795-9955 for urgent plumbing help."
|
||||
mediaAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721535.jpg"
|
||||
onSubmit={handleRequestService}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "About", items: [
|
||||
{
|
||||
label: "Family Owned", href: "#"},
|
||||
{
|
||||
label: "Since 1992", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Plumbing Repairs", href: "#features"},
|
||||
{
|
||||
label: "Emergency Plumbing", href: "#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "(586) 795-9955", href: "tel:5867959955"},
|
||||
{
|
||||
label: "eaglepaul2@yahoo.com", href: "mailto:eaglepaul2@yahoo.com"},
|
||||
],
|
||||
},
|
||||
{ title: "About", items: [{ label: "Family Owned", href: "#" }, { label: "Since 1992", href: "#" }] },
|
||||
{ title: "Services", items: [{ label: "Plumbing Repairs", href: "#features" }, { label: "Emergency Plumbing", href: "#contact" }] },
|
||||
{ title: "Contact", items: [{ label: "(586) 795-9955", onClick: handleCallNow }, { label: "eaglepaul2@yahoo.com", href: "mailto:eaglepaul2@yahoo.com" }] },
|
||||
]}
|
||||
bottomLeftText="© 2024 Cut Rate Plumbing"
|
||||
bottomRightText="2570 Maplecrest Rd, Sterling Heights, MI"
|
||||
@@ -248,4 +194,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user