diff --git a/src/app/page.tsx b/src/app/page.tsx index 587a810..da4ee1e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -29,116 +29,32 @@ export default function LandingPage() {
@@ -148,39 +64,13 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} features={[ - { - icon: Droplets, - title: "Water Heater Replacement", - description: "High-efficiency tank and tankless installation.", - }, - { - icon: Wrench, - title: "Pipe & Repipe Work", - description: "Complete professional repiping for longevity.", - }, - { - icon: AlertTriangle, - title: "Emergency Leak Repair", - description: "Same-day service for your urgent pipe bursts.", - }, - { - icon: ShieldCheck, - title: "Drain Cleaning & Inspection", - description: "Keep your systems flowing with thorough inspections.", - }, - { - icon: Settings, - title: "Sewer Line Repair", - description: "Reliable sewer line diagnostics and repairs.", - }, - { - icon: Award, - title: "Plumbing Maintenance", - description: "Preventative care plans for long-term health.", - }, + { icon: Droplets, title: "Water Heater Replacement", description: "High-efficiency tank and tankless installation." }, + { icon: Wrench, title: "Pipe & Repipe Work", description: "Complete professional repiping for longevity." }, + { icon: AlertTriangle, title: "Emergency Leak Repair", description: "Same-day service for your urgent pipe bursts." }, + { icon: ShieldCheck, title: "Drain Cleaning & Inspection", description: "Keep your systems flowing with thorough inspections." }, ]} title="Comprehensive Plumbing Solutions" - description="From emergency leaks to full system repipes, we have the tools and expertise to handle every plumbing project with honesty and efficiency." + description="From emergency leaks to full system repipes, we handle every plumbing project with honesty and efficiency." /> @@ -190,39 +80,8 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} plans={[ - { - id: "basic-m", - title: "Standard Support", - period: "yearly", - price: "$99", - features: [ - "Annual Inspection", - "10% Off Repairs", - "Priority Scheduling", - ], - button: { - text: "Join Now", - href: "/contact", - }, - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=d6qgpr", - }, - { - id: "pro-m", - title: "Premium Membership", - period: "yearly", - price: "$199", - features: [ - "Annual Inspection", - "20% Off Repairs", - "Emergency Fee Waived", - "Priority 24/7 Support", - ], - button: { - text: "Join Now", - href: "/contact", - }, - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gtebtz", - }, + { id: "basic-m", title: "Standard Support", period: "yearly", price: "$99", features: ["Annual Inspection", "10% Off Repairs", "Priority Scheduling"], button: { text: "Join Now", href: "/contact" } }, + { id: "pro-m", title: "Premium Membership", period: "yearly", price: "$199", features: ["Annual Inspection", "20% Off Repairs", "Emergency Fee Waived", "Priority 24/7 Support"], button: { text: "Join Now", href: "/contact" } }, ]} title="Home Protection Membership" description="Join our VIP Club for priority service, annual inspections, and exclusive member discounts on all repairs." @@ -235,84 +94,13 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} testimonials={[ - { - id: "1", - name: "Sarah J.", - handle: "@homeowner", - testimonial: "Same-day service was a lifesaver. Honest pricing and very knowledgeable technician.", - rating: 5, - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=bg2raw", - }, - { - id: "2", - name: "Michael D.", - handle: "@resident", - testimonial: "They arrived exactly on time and fixed my leak in record time. Excellent service!", - rating: 5, - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=s1zn1q", - }, - { - id: "3", - name: "Emily R.", - handle: "@client", - testimonial: "Very professional and respectful of my home. The repiping project went perfectly.", - rating: 5, - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=b83b0u", - }, - { - id: "4", - name: "David L.", - handle: "@homeowner", - testimonial: "Great family-owned business. I trust them completely with all my plumbing needs.", - rating: 5, - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=dnseet", - }, - { - id: "5", - name: "Amanda T.", - handle: "@happy", - testimonial: "Fast, friendly, and did exactly what they quoted upfront. Highly recommend.", - rating: 5, - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=w73ze4", - }, + { id: "1", name: "Sarah J.", handle: "@homeowner", testimonial: "Same-day service was a lifesaver. Honest pricing and very knowledgeable technician.", rating: 5 }, + { id: "2", name: "Michael D.", handle: "@resident", testimonial: "They arrived exactly on time and fixed my leak in record time. Excellent service!", rating: 5 }, + { id: "3", name: "Emily R.", handle: "@client", testimonial: "Very professional and respectful of my home. The repiping project went perfectly.", rating: 5 }, ]} showRating={true} - title="What Our Neighbors Say" - description="Trusted by over 2,000 satisfied families in our community. We treat every home like our own." - /> - - -
-
@@ -320,45 +108,9 @@ export default function LandingPage() { diff --git a/src/app/reviews/page.tsx b/src/app/reviews/page.tsx index a0c6c6f..ada1497 100644 --- a/src/app/reviews/page.tsx +++ b/src/app/reviews/page.tsx @@ -2,12 +2,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import { MessageSquare, Star } from "lucide-react"; +import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -export default function LandingPage() { +export default function ReviewsPage() { return ( - - -
- -
- - + +
+
+
); diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 26cc493..ea66113 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -2,13 +2,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import MediaAbout from '@/components/sections/about/MediaAbout'; -import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import { AlertTriangle, ThumbsUp } from "lucide-react"; +import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { AlertTriangle, Droplets, Gauge, ShieldCheck, Zap, Wrench, ThermometerSun } from "lucide-react"; -export default function LandingPage() { +export default function ServicesPage() { return ( - + -
- -
+
+ +
-
- -
- - +
); -} +} \ No newline at end of file