Compare commits
33 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a251ef3c69 | |||
| 15c06f1f0d | |||
| 27e4dca9cc | |||
| 0a3689d3df | |||
| 6f52f5cbf1 | |||
| d07491aa64 | |||
| a17ed8a42c | |||
| 4bba4b6c41 | |||
| d4e464337d | |||
| 4de836d71a | |||
| 7076f8da0b | |||
| 659ac71cce | |||
| 94859f8bb7 | |||
| f0bda6c80b | |||
| fc8cea1755 | |||
| 27d9ed7804 | |||
| 0603ab5515 | |||
| 906eb6c441 | |||
| 6a1d449b02 | |||
| c56ed21e83 | |||
| 28e3dd425c | |||
| dfd4062d05 | |||
| acd4d309d9 | |||
| 409c2deaf8 | |||
| e7dbe26dc8 | |||
| 4ac8caf9f5 | |||
| a8b79b143a | |||
| 8c3c623b11 | |||
| ac1acdfd70 | |||
| 365aa43876 | |||
| 15d191b47f | |||
| 7beb317804 | |||
| b18ddb3d7f |
@@ -1,107 +0,0 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
|
||||
export default function FaqPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="smallMedium"
|
||||
sizing="largeSmall"
|
||||
background="grid"
|
||||
cardStyle="inset"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Why Us", id: "/why-us" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "FAQ", id: "/faq" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
brandName="Doral Plumbing Co."
|
||||
button={{
|
||||
text: "Call Us Today!", href: "tel:786-977-5727"
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "faq1", title: "What areas do you serve?", content: "We proudly serve the local area and surrounding regions. Contact us to confirm service availability in your specific location."
|
||||
},
|
||||
{
|
||||
id: "faq2", title: "Do you offer emergency services?", content: "Yes, we understand plumbing emergencies can happen at any time. Call us directly for urgent assistance, and we'll do our best to help."
|
||||
},
|
||||
{
|
||||
id: "faq3", title: "How quickly can you respond?", content: "We strive for prompt response times. For non-emergencies, we'll schedule a convenient time. For emergencies, we aim to get to you as quickly as possible."
|
||||
},
|
||||
{
|
||||
id: "faq4", title: "Are your plumbers licensed and insured?", content: "Absolutely. All our plumbers are fully licensed, insured, and highly experienced to provide you with peace of mind and professional service."
|
||||
},
|
||||
{
|
||||
id: "faq5", title: "What payment methods do you accept?", content: "We accept all major credit cards, debit cards, and bank transfers. It's always best to clarify payment plans with our team during booking."
|
||||
},
|
||||
{
|
||||
id: "faq6", title: "Do you offer free estimates?", content: "Yes, we offer free, no-obligation estimates for most services. Call us today to schedule yours!"
|
||||
}
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Find quick answers to common questions about our plumbing services."
|
||||
tag="Got Questions?"
|
||||
tagAnimation="opacity"
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Faucet Repair", href: "/services#faucet" },
|
||||
{ label: "Water Heaters", href: "/services#water-heaters" },
|
||||
{ label: "Pipe Repair", href: "/services#pipes" },
|
||||
{ label: "Drain Cleaning", href: "/services#drains" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Our Work", href: "/gallery" },
|
||||
{ label: "Reviews", href: "/reviews" },
|
||||
{ label: "Contact", href: "/contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2024 Doral Plumbing Co. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -2,11 +2,13 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
|
||||
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
|
||||
export default function GalleryPage() {
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
@@ -21,98 +23,247 @@ export default function GalleryPage() {
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "Why Us", id: "about"},
|
||||
{
|
||||
name: "Services", id: "features"},
|
||||
{
|
||||
name: "Gallery", href: "/gallery"},
|
||||
{
|
||||
name: "Reviews", id: "testimonials"},
|
||||
{
|
||||
name: "FAQ", id: "faq"},
|
||||
{
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="Tyrone and Sons Plumbing"
|
||||
button={{
|
||||
text: "Call Us Today!", href: "tel:786-977-5727"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
|
||||
<div id="gallery" data-section="gallery">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1", name: "Modern Kitchen Sink Installation", price: "View Project", imageSrc: "http://img.b2bpic.net/free-photo/woman-preparing-relaxing-bath_23-2148976865.jpg", imageAlt: "Newly installed modern kitchen sink."},
|
||||
{
|
||||
id: "p2", name: "Bathroom Fixture Upgrade", price: "View Project", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-senior-man-cleaning-shower_23-2149535084.jpg", imageAlt: "Elegant new bathroom fixtures installed."},
|
||||
{
|
||||
id: "p3", name: "Commercial Pipe System", price: "View Project", imageSrc: "http://img.b2bpic.net/free-photo/bangkok-thailand-november-12-2024-street-food-vendor-preparing-thai-cuisine_482257-126002.jpg", imageAlt: "Complex commercial pipe system installation."},
|
||||
{
|
||||
id: "p4", name: "Water Softener System", price: "View Project", imageSrc: "http://img.b2bpic.net/free-photo/girl-gym_1157-14927.jpg", imageAlt: "Residential water softener system installation."},
|
||||
{
|
||||
id: "p5", name: "Custom Shower Installation", price: "View Project", imageSrc: "http://img.b2bpic.net/free-photo/bathroom-interior-with-tub-and-wooden-decor_181624-19614.jpg", imageAlt: "Custom designed shower installation."},
|
||||
{
|
||||
id: "p6", name: "Boiler Repair and Maintenance", price: "View Project", imageSrc: "http://img.b2bpic.net/free-photo/mechanic-wearing-protective-suit-examines-boiler-home-generated-ai_24640-101149.jpg", imageAlt: "Technician working on a boiler."}
|
||||
]}
|
||||
title="Our Complete Project Gallery"
|
||||
description="Discover the full scope of our expertise through a comprehensive showcase of Tyrone and Sons Plumbing's completed projects."
|
||||
tag="Our Work"
|
||||
tagAnimation="opacity"
|
||||
/>
|
||||
</div>
|
||||
},
|
||||
{
|
||||
name: "Why Us",
|
||||
id: "about",
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Faucet Repair", href: "/services#faucet"},
|
||||
{
|
||||
label: "Water Heaters", href: "/services#water-heaters"},
|
||||
{
|
||||
label: "Pipe Repair", href: "/services#pipes"},
|
||||
{
|
||||
label: "Drain Cleaning", href: "/services#drains"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Our Work", href: "/gallery"},
|
||||
{
|
||||
label: "Reviews", href: "/reviews"},
|
||||
{
|
||||
label: "Contact", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms of Service", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 Tyrone and Sons Plumbing. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "features",
|
||||
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "gallery",
|
||||
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "testimonials",
|
||||
|
||||
},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "faq",
|
||||
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
|
||||
},
|
||||
]}
|
||||
brandName="Doral Plumbing Co."
|
||||
button={{
|
||||
text: "Call Us Today!",
|
||||
href: "tel:786-977-5727",
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardMedia
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Modern Kitchen Faucet Installation",
|
||||
description: "Upgrade your kitchen with stylish and functional fixtures for improved aesthetics and usability.",
|
||||
tag: "Residential",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-preparing-relaxing-bath_23-2148976865.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Efficient Water Heater Replacement",
|
||||
description: "Ensuring reliable hot water for your home with energy-efficient and durable water heater installations.",
|
||||
tag: "Residential",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-men-working-together_23-2148752013.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Commercial Pipe System Upgrade",
|
||||
description: "Robust plumbing infrastructure solutions for businesses, designed for longevity and high performance.",
|
||||
tag: "Commercial",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bangkok-thailand-november-12-2024-street-food-vendor-preparing-thai-cuisine_482257-126002.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Bathroom Fixture Renovation",
|
||||
description: "Transforming bathrooms with elegant and durable fixtures that enhance both style and functionality.",
|
||||
tag: "Residential",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-senior-man-cleaning-shower_23-2149535084.jpg",
|
||||
},
|
||||
]}
|
||||
title="Our Work in Action: A Gallery of Excellence"
|
||||
description="Browse through our portfolio of successfully completed plumbing projects, showcasing our expertise in various residential and commercial settings across Miami."
|
||||
tag="Project Showcase"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardTwentySeven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Leak Detection & Repair",
|
||||
description: "Pinpointing and fixing hidden leaks efficiently to prevent costly water damage.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-washing-hands_23-2150323089.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Drain Cleaning Solutions",
|
||||
description: "Restoring full drainage and preventing future clogs with professional cleaning services.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bangkok-thailand-november-12-2024-street-food-vendor-preparing-thai-cuisine_482257-126002.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Outdoor Plumbing Installations",
|
||||
description: "From irrigation systems to outdoor sinks, we handle all your exterior plumbing needs.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tools-materials-sanitary-works_93675-131721.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "New Construction Plumbing",
|
||||
description: "Complete plumbing setup for new residential and commercial buildings, ensuring optimal performance.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-men-working-together_23-2148752013.jpg",
|
||||
},
|
||||
]}
|
||||
title="Diverse Projects, Consistent Quality"
|
||||
description="From intricate pipe work to large-scale installations, our commitment to quality and customer satisfaction remains unwavering across all projects we undertake."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonial" data-section="testimonial">
|
||||
<TestimonialCardTen
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Kitchen Renovation Success!",
|
||||
quote: "Doral Plumbing Co. handled our kitchen remodel with incredible professionalism. The new sink and faucet look amazing and work perfectly.",
|
||||
name: "Sarah P.",
|
||||
role: "Homeowner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-man-dressed-grey-t-shirt-isolated_171337-7641.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Emergency Pipe Repair",
|
||||
quote: "When a pipe burst, they were there within the hour. Fast, reliable, and prevented major damage. Highly recommend their emergency service!",
|
||||
name: "Michael L.",
|
||||
role: "Business Owner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-taking-selfie-photo-winking_1262-18343.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Water Heater Install",
|
||||
quote: "Excellent service for our new water heater installation. The team was courteous, clean, and completed the job swiftly.",
|
||||
name: "Jessica R.",
|
||||
role: "Property Manager",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-wearing-casual-black-tshirt-standing-isolated-red-background-looking-away-side-with-smile-face-natural-expression-laughing-confident_839833-32367.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Bathroom Fixture Upgrade",
|
||||
quote: "Professional and meticulous work on our bathroom upgrade. The new fixtures are beautiful and installed perfectly. Very happy!",
|
||||
name: "Emily S.",
|
||||
role: "Resident",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-man-with-joyful-expression-has-perfect-smile-white-teeth-laughs-something-funny_273609-17078.jpg",
|
||||
},
|
||||
]}
|
||||
title="What Our Clients Say About Our Work"
|
||||
description="Hear directly from satisfied customers about the quality and impact of our plumbing projects and dedicated service."
|
||||
tag="Client Feedback"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Faucet Repair",
|
||||
href: "/services#faucet",
|
||||
},
|
||||
{
|
||||
label: "Water Heater",
|
||||
href: "/services#waterheater",
|
||||
},
|
||||
{
|
||||
label: "Pipe Repair",
|
||||
href: "/services#piperepair",
|
||||
},
|
||||
{
|
||||
label: "Drain Cleaning",
|
||||
href: "/services#draincleaning",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Our Work",
|
||||
href: "/gallery",
|
||||
},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "/reviews",
|
||||
},
|
||||
{
|
||||
label: "FAQs",
|
||||
href: "/faq",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "(305) 123-4567",
|
||||
href: "tel:+13051234567",
|
||||
},
|
||||
{
|
||||
label: "info@doralplumbing.com",
|
||||
href: "mailto:info@doralplumbing.com",
|
||||
},
|
||||
{
|
||||
label: "123 Main St, Doral, FL",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 Doral Plumbing Co. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
228
src/app/page.tsx
228
src/app/page.tsx
@@ -32,43 +32,63 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "hero",
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
|
||||
},
|
||||
{
|
||||
name: "Why Us", id: "about",
|
||||
name: "Why Us",
|
||||
id: "about",
|
||||
|
||||
},
|
||||
{
|
||||
name: "Services", id: "features",
|
||||
name: "Services",
|
||||
id: "features",
|
||||
|
||||
},
|
||||
{
|
||||
name: "Gallery", href: "/gallery",
|
||||
name: "Gallery",
|
||||
id: "gallery",
|
||||
|
||||
},
|
||||
{
|
||||
name: "Reviews", id: "testimonials",
|
||||
name: "Reviews",
|
||||
id: "testimonials",
|
||||
|
||||
},
|
||||
{
|
||||
name: "FAQ", id: "faq",
|
||||
name: "FAQ",
|
||||
id: "faq",
|
||||
|
||||
},
|
||||
{
|
||||
name: "Contact", id: "contact",
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
|
||||
},
|
||||
]}
|
||||
brandName="Tyrone and Sons Plumbing"
|
||||
brandName="Doral Plumbing Co."
|
||||
button={{
|
||||
text: "Call Us Today!", href: "tel:786-977-5727"}}
|
||||
text: "Call Us Today!",
|
||||
href: "tel:786-977-5727",
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogo
|
||||
logoText="Tyrone and Sons Plumbing"
|
||||
description="Your trusted local experts for all plumbing needs. Tyrone and Sons Plumbing delivers prompt, reliable, and high-quality service."
|
||||
logoText="Doral Plumbing Co."
|
||||
description="Your trusted local experts for all plumbing needs in Doral, Miami. From leaky faucets to water heater installations, we deliver prompt, reliable, and high-quality service."
|
||||
buttons={[
|
||||
{
|
||||
text: "Schedule Service", href: "/contact"},
|
||||
text: "Schedule Service",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
text: "Call Now", href: "tel:786-977-5727"},
|
||||
text: "Call Now",
|
||||
href: "tel:786-977-5727",
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/tools-materials-sanitary-works_93675-131721.jpg"
|
||||
@@ -82,12 +102,12 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
tag="Why Choose Us"
|
||||
tagAnimation="opacity"
|
||||
title="Tyrone and Sons Plumbing: Top-Rated Experts"
|
||||
description="With a strong reputation, Tyrone and Sons Plumbing is committed to providing exceptional service. Our experienced team handles a wide range of fixtures and systems, ensuring reliable and lasting solutions for your home or business."
|
||||
title="Doral's Top-Rated Plumbing Experts"
|
||||
description="With a 4.8-star rating, Doral Plumbing Co. is committed to providing exceptional service. Our experienced team handles a wide range of fixtures and systems, ensuring reliable and lasting solutions for your home or business."
|
||||
subdescription="We pride ourselves on professionalism, transparent pricing, and customer satisfaction. Your plumbing needs are our priority."
|
||||
icon={Gauge}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/plumber-repair-experienced-attentive-middleaged-man-examining-bottom-kitchen-sink_259150-58266.jpg"
|
||||
imageAlt="Satisfied customer shaking hands with a Tyrone and Sons Plumbing plumber."
|
||||
imageAlt="Satisfied customer shaking hands with a Doral Plumbing Co. plumber."
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -100,16 +120,28 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "Faucet Repair & Installation", description: "Expert repair for leaky faucets and professional installation of new fixtures to enhance your kitchen and bathroom.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-washing-hands_23-2150323089.jpg", imageAlt: "Plumber fixing a leaky faucet."},
|
||||
title: "Faucet Repair & Installation",
|
||||
description: "Expert repair for leaky faucets and professional installation of new fixtures to enhance your kitchen and bathroom.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-washing-hands_23-2150323089.jpg",
|
||||
imageAlt: "Plumber fixing a leaky faucet.",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Water Heater Services", description: "Installation, repair, and maintenance for all types of water heaters, ensuring you always have hot water when you need it.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-men-working-together_23-2148752013.jpg", imageAlt: "Technician installing a new water heater."},
|
||||
title: "Water Heater Services",
|
||||
description: "Installation, repair, and maintenance for all types of water heaters, ensuring you always have hot water when you need it.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-men-working-together_23-2148752013.jpg",
|
||||
imageAlt: "Technician installing a new water heater.",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Pipe Repair & Replacement", description: "Skilled diagnosis and repair of burst pipes, leaks, and complete pipe replacement for residential and commercial properties.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-men-working-together_23-2148752013.jpg", imageAlt: "Plumber repairing pipes underground."},
|
||||
title: "Pipe Repair & Replacement",
|
||||
description: "Skilled diagnosis and repair of burst pipes, leaks, and complete pipe replacement for residential and commercial properties.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-men-working-together_23-2148752013.jpg",
|
||||
imageAlt: "Plumber repairing pipes underground.",
|
||||
},
|
||||
]}
|
||||
title="Comprehensive Plumbing Solutions"
|
||||
description="From minor leaks to major installations, Tyrone and Sons Plumbing offers a full spectrum of services to keep your plumbing system running smoothly."
|
||||
description="From minor leaks to major installations, Doral Plumbing Co. offers a full spectrum of services to keep your plumbing system running smoothly."
|
||||
tag="Our Services"
|
||||
tagAnimation="opacity"
|
||||
/>
|
||||
@@ -123,16 +155,36 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1", name: "Modern Kitchen Sink Installation", price: "View Project", imageSrc: "http://img.b2bpic.net/free-photo/woman-preparing-relaxing-bath_23-2148976865.jpg", imageAlt: "Newly installed modern kitchen sink."},
|
||||
id: "p1",
|
||||
name: "Modern Kitchen Sink Installation",
|
||||
price: "View Project",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-preparing-relaxing-bath_23-2148976865.jpg",
|
||||
imageAlt: "Newly installed modern kitchen sink.",
|
||||
},
|
||||
{
|
||||
id: "p2", name: "Bathroom Fixture Upgrade", price: "View Project", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-senior-man-cleaning-shower_23-2149535084.jpg", imageAlt: "Elegant new bathroom fixtures installed."},
|
||||
id: "p2",
|
||||
name: "Bathroom Fixture Upgrade",
|
||||
price: "View Project",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-senior-man-cleaning-shower_23-2149535084.jpg",
|
||||
imageAlt: "Elegant new bathroom fixtures installed.",
|
||||
},
|
||||
{
|
||||
id: "p3", name: "Commercial Pipe System", price: "View Project", imageSrc: "http://img.b2bpic.net/free-photo/bangkok-thailand-november-12-2024-street-food-vendor-preparing-thai-cuisine_482257-126002.jpg", imageAlt: "Complex commercial pipe system installation."},
|
||||
id: "p3",
|
||||
name: "Commercial Pipe System",
|
||||
price: "View Project",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bangkok-thailand-november-12-2024-street-food-vendor-preparing-thai-cuisine_482257-126002.jpg",
|
||||
imageAlt: "Complex commercial pipe system installation.",
|
||||
},
|
||||
{
|
||||
id: "p4", name: "Water Softener System", price: "View Project", imageSrc: "http://img.b2bpic.net/free-photo/girl-gym_1157-14927.jpg", imageAlt: "Residential water softener system installation."},
|
||||
id: "p4",
|
||||
name: "Water Softener System",
|
||||
price: "View Project",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-gym_1157-14927.jpg",
|
||||
imageAlt: "Residential water softener system installation.",
|
||||
},
|
||||
]}
|
||||
title="Our Work Speaks for Itself"
|
||||
description="Explore a selection of our recent projects, showcasing the quality and craftsmanship Tyrone and Sons Plumbing brings to every job."
|
||||
description="Explore a selection of our recent projects, showcasing the quality and craftsmanship Doral Plumbing Co. brings to every job."
|
||||
tag="Project Gallery"
|
||||
tagAnimation="opacity"
|
||||
/>
|
||||
@@ -146,20 +198,40 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Carlos M.", role: "Homeowner", company: "Local Client", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-man-dressed-grey-t-shirt-isolated_171337-7641.jpg"},
|
||||
id: "1",
|
||||
name: "Carlos M.",
|
||||
role: "Homeowner",
|
||||
company: "Doral, FL",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-man-dressed-grey-t-shirt-isolated_171337-7641.jpg",
|
||||
},
|
||||
{
|
||||
id: "2", name: "Maria P.", role: "Business Owner", company: "Local Client", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-taking-selfie-photo-winking_1262-18343.jpg"},
|
||||
id: "2",
|
||||
name: "Maria P.",
|
||||
role: "Business Owner",
|
||||
company: "Miami, FL",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-taking-selfie-photo-winking_1262-18343.jpg",
|
||||
},
|
||||
{
|
||||
id: "3", name: "David L.", role: "Resident", company: "Local Client", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-wearing-casual-black-tshirt-standing-isolated-red-background-looking-away-side-with-smile-face-natural-expression-laughing-confident_839833-32367.jpg"},
|
||||
id: "3",
|
||||
name: "David L.",
|
||||
role: "Resident",
|
||||
company: "Doral, FL",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-wearing-casual-black-tshirt-standing-isolated-red-background-looking-away-side-with-smile-face-natural-expression-laughing-confident_839833-32367.jpg",
|
||||
},
|
||||
{
|
||||
id: "4", name: "Sophia G.", role: "Property Manager", company: "Local Client", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-man-with-joyful-expression-has-perfect-smile-white-teeth-laughs-something-funny_273609-17078.jpg"},
|
||||
id: "4",
|
||||
name: "Sophia G.",
|
||||
role: "Property Manager",
|
||||
company: "Miami, FL",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-man-with-joyful-expression-has-perfect-smile-white-teeth-laughs-something-funny_273609-17078.jpg",
|
||||
},
|
||||
]}
|
||||
title="What Our Customers Say"
|
||||
description="Hear directly from satisfied clients about their experience with Tyrone and Sons Plumbing's professional and efficient services."
|
||||
description="Hear directly from satisfied clients about their experience with Doral Plumbing Co.'s professional and efficient services."
|
||||
tag="Client Reviews"
|
||||
tagAnimation="opacity"
|
||||
/>
|
||||
@@ -171,13 +243,25 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "faq1", title: "What areas do you serve?", content: "We proudly serve the local area and surrounding regions. Contact us to confirm service availability in your specific location."},
|
||||
id: "faq1",
|
||||
title: "What areas do you serve?",
|
||||
content: "We proudly serve Doral, Miami, and surrounding areas in Florida. Contact us to confirm service availability in your specific location.",
|
||||
},
|
||||
{
|
||||
id: "faq2", title: "Do you offer emergency services?", content: "Yes, we understand plumbing emergencies can happen at any time. Call us directly for urgent assistance, and we'll do our best to help."},
|
||||
id: "faq2",
|
||||
title: "Do you offer emergency services?",
|
||||
content: "Yes, we understand plumbing emergencies can happen at any time. Call us directly for urgent assistance, and we'll do our best to help.",
|
||||
},
|
||||
{
|
||||
id: "faq3", title: "How quickly can you respond?", content: "We strive for prompt response times. For non-emergencies, we'll schedule a convenient time. For emergencies, we aim to get to you as quickly as possible."},
|
||||
id: "faq3",
|
||||
title: "How quickly can you respond?",
|
||||
content: "We strive for prompt response times. For non-emergencies, we'll schedule a convenient time. For emergencies, we aim to get to you as quickly as possible.",
|
||||
},
|
||||
{
|
||||
id: "faq4", title: "Are your plumbers licensed and insured?", content: "Absolutely. All our plumbers are fully licensed, insured, and highly experienced to provide you with peace of mind and professional service."},
|
||||
id: "faq4",
|
||||
title: "Are your plumbers licensed and insured?",
|
||||
content: "Absolutely. All our plumbers are fully licensed, insured, and highly experienced to provide you with peace of mind and professional service.",
|
||||
},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Find quick answers to common questions about our plumbing services."
|
||||
@@ -191,15 +275,18 @@ export default function LandingPage() {
|
||||
<ContactText
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain"}}
|
||||
text="Need expert plumbing assistance? Contact Tyrone and Sons Plumbing today for reliable service and lasting solutions.
|
||||
|
||||
Phone: 786-977-5727"
|
||||
variant: "plain",
|
||||
}}
|
||||
text="Need expert plumbing assistance in Doral? Contact Doral Plumbing Co. today for reliable service and lasting solutions. \n\nAddress: 10430 NW 29th Terrace Suite 9736, Miami, FL 33172\nPhone: 786-977-5727"
|
||||
buttons={[
|
||||
{
|
||||
text: "Get a Free Quote", href: "/contact"},
|
||||
text: "Get a Free Quote",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
text: "Call Us", href: "tel:786-977-5727"},
|
||||
text: "Call Us",
|
||||
href: "tel:786-977-5727",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -208,42 +295,65 @@ Phone: 786-977-5727"
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Faucet Repair", href: "/services#faucet"},
|
||||
label: "Faucet Repair",
|
||||
href: "/services#faucet",
|
||||
},
|
||||
{
|
||||
label: "Water Heaters", href: "/services#water-heaters"},
|
||||
label: "Water Heaters",
|
||||
href: "/services#water-heaters",
|
||||
},
|
||||
{
|
||||
label: "Pipe Repair", href: "/services#pipes"},
|
||||
label: "Pipe Repair",
|
||||
href: "/services#pipes",
|
||||
},
|
||||
{
|
||||
label: "Drain Cleaning", href: "/services#drains"},
|
||||
label: "Drain Cleaning",
|
||||
href: "/services#drains",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About Us", href: "/about"},
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Our Work", href: "/gallery"},
|
||||
label: "Our Work",
|
||||
href: "/gallery",
|
||||
},
|
||||
{
|
||||
label: "Reviews", href: "/reviews"},
|
||||
label: "Reviews",
|
||||
href: "/reviews",
|
||||
},
|
||||
{
|
||||
label: "Contact", href: "/contact"},
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy", href: "#"},
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service", href: "#"},
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 Tyrone and Sons Plumbing. All rights reserved."
|
||||
copyrightText="© 2024 Doral Plumbing Co. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,11 +2,13 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
|
||||
export default function ReviewsPage() {
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
@@ -21,86 +23,228 @@ export default function ReviewsPage() {
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", href: "/" },
|
||||
{ name: "Why Us", href: "/why-us" },
|
||||
{ name: "Services", id: "features" },
|
||||
{ name: "Gallery", id: "gallery-preview" },
|
||||
{ name: "Reviews", href: "/reviews" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
brandName="Doral Plumbing Co."
|
||||
button={{
|
||||
text: "Call Us Today!", href: "tel:786-977-5727"
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
|
||||
<div id="customer-reviews" data-section="customer-reviews">
|
||||
<TestimonialCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Carlos M.", role: "Homeowner", company: "Doral, FL", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-man-dressed-grey-t-shirt-isolated_171337-7641.jpg"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Maria P.", role: "Business Owner", company: "Miami, FL", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-taking-selfie-photo-winking_1262-18343.jpg"
|
||||
},
|
||||
{
|
||||
id: "3", name: "David L.", role: "Resident", company: "Doral, FL", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-wearing-casual-black-tshirt-standing-isolated-red-background-looking-away-side-with-smile-face-natural-expression-laughing-confident_839833-32367.jpg"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Sophia G.", role: "Property Manager", company: "Miami, FL", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-man-with-joyful-expression-has-perfect-smile-white-teeth-laughs-something-funny_273609-17078.jpg"
|
||||
}
|
||||
]}
|
||||
title="Customer Testimonials & Reviews (4.8 Rating)"
|
||||
description="Hear directly from satisfied clients about their experience with Doral Plumbing Co.'s professional and efficient services."
|
||||
tag="Client Reviews"
|
||||
tagAnimation="opacity"
|
||||
/>
|
||||
</div>
|
||||
},
|
||||
{
|
||||
name: "Why Us",
|
||||
id: "about",
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Faucet Repair", href: "#features" },
|
||||
{ label: "Water Heaters", href: "#features" },
|
||||
{ label: "Pipe Repair", href: "#features" },
|
||||
{ label: "Drain Cleaning", href: "#features" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "Why Us", href: "/why-us" },
|
||||
{ label: "Our Work", href: "#gallery-preview" },
|
||||
{ label: "Reviews", href: "/reviews" },
|
||||
{ label: "Contact", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2024 Doral Plumbing Co. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "features",
|
||||
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "gallery",
|
||||
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "testimonials",
|
||||
|
||||
},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "faq",
|
||||
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
|
||||
},
|
||||
]}
|
||||
brandName="Doral Plumbing Co."
|
||||
button={{
|
||||
text: "Call Us Today!",
|
||||
href: "tel:786-977-5727",
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonial" data-section="testimonial">
|
||||
<TestimonialCardThirteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Elena G.",
|
||||
handle: "@ElenaG_Homes",
|
||||
testimonial: "Absolutely fantastic service! The plumber was punctual, professional, and fixed my leaky faucet in no time. Highly recommend Doral Plumbing!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-taking-selfie-photo-winking_1262-18343.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Carlos R.",
|
||||
handle: "@CarlosMiamiBiz",
|
||||
testimonial: "Had an emergency water heater issue on a Sunday, and Doral Plumbing Co. responded immediately. Their technician was knowledgeable and solved the problem efficiently. Five stars!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-man-dressed-grey-t-shirt-isolated_171337-7641.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Maria S.",
|
||||
handle: "@MariaS_Design",
|
||||
testimonial: "Needed a complex pipe repair in my old house, and the team from Doral Plumbing did a superb job. Clean, courteous, and transparent pricing. Very impressed!",
|
||||
rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-man-with-joyful-expression-has-perfect-smile-white-teeth-laughs-something-funny_273609-17078.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "David K.",
|
||||
handle: "@DavidK_Invest",
|
||||
testimonial: "They installed our new kitchen sink and garbage disposal flawlessly. Everything works perfectly, and the area was left spotless. Great work!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-wearing-casual-black-tshirt-standing-isolated-red-background-looking-away-side-with-smile-face-natural-expression-laughing-confident_839833-32367.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Sofia M.",
|
||||
handle: "@SofiaM_Family",
|
||||
testimonial: "Prompt and reliable service for a stubborn drain clog. The technician was friendly and explained everything clearly. Would call again!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-taking-selfie-photo-winking_1262-18343.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Juan V.",
|
||||
handle: "@JuanV_Realty",
|
||||
testimonial: "Excellent service on multiple properties. Doral Plumbing Co. is our go-to for all commercial plumbing needs. Always professional!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-man-dressed-grey-t-shirt-isolated_171337-7641.jpg",
|
||||
},
|
||||
]}
|
||||
showRating={true}
|
||||
title="Trusted Plumbing Services, Reviewed by You"
|
||||
description="Our commitment to excellent service is reflected in the honest feedback from our valued customers. See why Doral Plumbing Co. is Miami's preferred choice."
|
||||
tag="Customer Voice"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardFourteen
|
||||
useInvertedBackground={true}
|
||||
title="Our Service Impact"
|
||||
tag="Excellence in Numbers"
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "4.8/5",
|
||||
description: "Average Customer Rating",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "5000+",
|
||||
description: "Projects Completed Annually",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "98%",
|
||||
description: "Customer Satisfaction Rate",
|
||||
},
|
||||
]}
|
||||
metricsAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
tag="Share Your Experience"
|
||||
title="Leave Us a Review or Request Service!"
|
||||
description="Your feedback helps us grow and improve. If you've had a great experience, please consider leaving a review. If you need new service, we're here to help!"
|
||||
buttons={[
|
||||
{
|
||||
text: "Submit a Review",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
text: "Book a Service",
|
||||
href: "/contact",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Faucet Repair",
|
||||
href: "/services#faucet",
|
||||
},
|
||||
{
|
||||
label: "Water Heater",
|
||||
href: "/services#waterheater",
|
||||
},
|
||||
{
|
||||
label: "Pipe Repair",
|
||||
href: "/services#piperepair",
|
||||
},
|
||||
{
|
||||
label: "Drain Cleaning",
|
||||
href: "/services#draincleaning",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Our Work",
|
||||
href: "/gallery",
|
||||
},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "/reviews",
|
||||
},
|
||||
{
|
||||
label: "FAQs",
|
||||
href: "/faq",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "(305) 123-4567", href: "tel:+13051234567"},
|
||||
{
|
||||
label: "info@doralplumbing.com", href: "mailto:info@doralplumbing.com"},
|
||||
{
|
||||
label: "123 Main St, Doral, FL", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,126 +0,0 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
|
||||
import { Gauge } from "lucide-react";
|
||||
|
||||
export default function WhyUsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="smallMedium"
|
||||
sizing="largeSmall"
|
||||
background="grid"
|
||||
cardStyle="inset"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", href: "/" },
|
||||
{ name: "Why Us", href: "/why-us" },
|
||||
{ name: "Services", id: "features" },
|
||||
{ name: "Gallery", id: "gallery-preview" },
|
||||
{ name: "Reviews", href: "/reviews" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
brandName="Doral Plumbing Co."
|
||||
button={{
|
||||
text: "Call Us Today!", href: "tel:786-977-5727"
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="why-us-intro" data-section="why-us-intro">
|
||||
<TestimonialAboutCard
|
||||
useInvertedBackground={false}
|
||||
tag="Why Choose Us"
|
||||
tagAnimation="opacity"
|
||||
title="Doral's Top-Rated Plumbing Experts"
|
||||
description="With a 4.8-star rating, Doral Plumbing Co. is committed to providing exceptional service. Our experienced team handles a wide range of fixtures and systems, ensuring reliable and lasting solutions for your home or business."
|
||||
subdescription="We pride ourselves on professionalism, transparent pricing, and customer satisfaction. Your plumbing needs are our priority."
|
||||
icon={Gauge}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/plumber-repair-experienced-attentive-middleaged-man-examining-bottom-kitchen-sink_259150-58266.jpg"
|
||||
imageAlt="Satisfied customer shaking hands with a Doral Plumbing Co. plumber."
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="our-specializations" data-section="our-specializations">
|
||||
<FeatureCardSeven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "Faucet Repair & Installation", description: "Expert repair for leaky faucets and professional installation of new fixtures to enhance your kitchen and bathroom.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-washing-hands_23-2150323089.jpg", imageAlt: "Plumber fixing a leaky faucet."
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Water Heater Services", description: "Installation, repair, and maintenance for all types of water heaters, ensuring you always have hot water when you need it.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-men-working-together_23-2148752013.jpg", imageAlt: "Technician installing a new water heater."
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Pipe Repair & Replacement", description: "Skilled diagnosis and repair of burst pipes, leaks, and complete pipe replacement for residential and commercial properties.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-men-working-together_23-2148752013.jpg", imageAlt: "Plumber repairing pipes underground."
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Fixture Installation", description: "From sinks and toilets to showers and bathtubs, we handle all types of fixture installations with precision.", imageSrc: "http://img.b2bpic.net/free-photo/tools-materials-sanitary-works_93675-131721.jpg", imageAlt: "New bathroom fixtures being installed."
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
title: "Drain & Sewer Systems", description: "Comprehensive services for drain cleaning, sewer line repair, and maintenance to ensure efficient wastewater management.", imageSrc: "http://img.b2bpic.net/free-photo/plumber-repair-experienced-attentive-middleaged-man-examining-bottom-kitchen-sink_259150-58266.jpg", imageAlt: "Plumber inspecting a drain system."
|
||||
}
|
||||
]}
|
||||
title="Our Plumbing Specializations"
|
||||
description="Our skilled technicians are experts in various plumbing specializations, ensuring precise and reliable solutions for every need."
|
||||
tag="Expertise"
|
||||
tagAnimation="opacity"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Faucet Repair", href: "#features" },
|
||||
{ label: "Water Heaters", href: "#features" },
|
||||
{ label: "Pipe Repair", href: "#features" },
|
||||
{ label: "Drain Cleaning", href: "#features" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "Why Us", href: "/why-us" },
|
||||
{ label: "Our Work", href: "#gallery-preview" },
|
||||
{ label: "Reviews", href: "/reviews" },
|
||||
{ label: "Contact", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2024 Doral Plumbing Co. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user