Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6386872a62 | |||
| 328a125210 | |||
| a8b79b143a | |||
| 8c3c623b11 | |||
| ac1acdfd70 | |||
| 365aa43876 | |||
| 15d191b47f | |||
| 7beb317804 | |||
| b18ddb3d7f |
@@ -1,118 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
||||||
import ReactLenis from "lenis/react";
|
|
||||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
|
||||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
|
||||||
|
|
||||||
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", href: "/"},
|
|
||||||
{
|
|
||||||
name: "Why Us", href: "/#about"},
|
|
||||||
{
|
|
||||||
name: "Services", href: "/#features"},
|
|
||||||
{
|
|
||||||
name: "Gallery", href: "/#gallery-preview"},
|
|
||||||
{
|
|
||||||
name: "Reviews", href: "/#testimonials"},
|
|
||||||
{
|
|
||||||
name: "FAQ", href: "/faq"},
|
|
||||||
{
|
|
||||||
name: "Contact", href: "/contact"},
|
|
||||||
]}
|
|
||||||
brandName="Tyrone and Sons Plumbing"
|
|
||||||
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: "Tyrone and Sons Plumbing proudly serves Miami, FL, and surrounding areas. Contact us at 786-977-5727 to confirm service availability in your specific location."},
|
|
||||||
{
|
|
||||||
id: "faq2", title: "What are your specialties?", content: "We specialize in a comprehensive range of plumbing services including fixtures (faucet, toilet, shower repairs and installations) and full plumbing systems (water heaters, pipe repair, drain cleaning).
|
|
||||||
"},
|
|
||||||
{
|
|
||||||
id: "faq3", title: "Do you offer emergency services?", content: "Yes, we understand plumbing emergencies can happen at any time. Call us directly at 786-977-5727 for urgent assistance, and we'll do our best to help."},
|
|
||||||
{
|
|
||||||
id: "faq4", 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: "faq5", title: "Are your plumbers licensed and insured?", content: "Absolutely. All our plumbers at Tyrone and Sons Plumbing are fully licensed, insured, and highly experienced to provide you with peace of mind and professional service."},
|
|
||||||
{
|
|
||||||
id: "faq6", title: "Where are you located?", content: "Our address is 10430 NW 29th Terrace Suite 9736, Miami, FL 33172."},
|
|
||||||
]}
|
|
||||||
title="Frequently Asked Questions"
|
|
||||||
description="Welcome to Tyrone and Sons Plumbing! We specialize in fixtures and systems, serving our community with reliable plumbing solutions. Address: 10430 NW 29th Terrace Suite 9736, Miami, FL 33172. Phone: 786-977-5727."
|
|
||||||
tag="Got Questions?"
|
|
||||||
tagAnimation="opacity"
|
|
||||||
faqsAnimation="slide-up"
|
|
||||||
/>
|
|
||||||
</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: "About Us", href: "/#about"},
|
|
||||||
{
|
|
||||||
label: "Our Work", href: "/#gallery-preview"},
|
|
||||||
{
|
|
||||||
label: "Reviews", href: "/#testimonials"},
|
|
||||||
{
|
|
||||||
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>
|
|
||||||
</ReactLenis>
|
|
||||||
</ThemeProvider>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -2,11 +2,13 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
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 NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
|
||||||
|
|
||||||
export default function GalleryPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-shift"
|
defaultButtonVariant="text-shift"
|
||||||
@@ -21,97 +23,246 @@ export default function GalleryPage() {
|
|||||||
headingFontWeight="light"
|
headingFontWeight="light"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home", href: "/"},
|
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="Doral Plumbing Co."
|
|
||||||
button={{
|
|
||||||
text: "Call Us Today!", href: "tel:786-977-5727"}}
|
|
||||||
animateOnLoad={true}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="gallery-main" data-section="gallery-main">
|
},
|
||||||
<ProductCardThree
|
{
|
||||||
animationType="slide-up"
|
name: "Why Us",
|
||||||
textboxLayout="default"
|
id: "about",
|
||||||
gridVariant="two-columns-alternating-heights"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
products={[
|
|
||||||
{
|
|
||||||
id: "g1", name: "Leak Detection & Repair", price: "View Details", imageSrc: "http://img.b2bpic.net/free-photo/plumber-fixing-faucet-bathroom_107420-13658.jpg", imageAlt: "Plumber checking for leaks under a sink."},
|
|
||||||
{
|
|
||||||
id: "g2", name: "Water Heater Replacement", price: "View Details", imageSrc: "http://img.b2bpic.net/free-photo/worker-fix-water-heater-electric-boiler_23-2148767939.jpg", imageAlt: "Technician replacing an old water heater."},
|
|
||||||
{
|
|
||||||
id: "g3", name: "Drain Cleaning Service", price: "View Details", imageSrc: "http://img.b2bpic.net/free-photo/plumber-cleaning-clogged-drain-pipe_1186-2180.jpg", imageAlt: "Plumber using equipment to clear a drain."},
|
|
||||||
{
|
|
||||||
id: "g4", name: "Commercial Pipe Installation", price: "View Details", imageSrc: "http://img.b2bpic.net/free-photo/man-repairing-pipe_23-2148752002.jpg", imageAlt: "New commercial plumbing pipes being installed."},
|
|
||||||
{
|
|
||||||
id: "g5", name: "Bathroom Remodel Plumbing", price: "View Details", imageSrc: "http://img.b2bpic.net/free-photo/plumber-repairing-bathroom-sink_13339-16518.jpg", imageAlt: "Plumbing work during a bathroom renovation."},
|
|
||||||
{
|
|
||||||
id: "g6", name: "Outdoor Spigot Repair", price: "View Details", imageSrc: "http://img.b2bpic.net/free-photo/woman-cleaning-dirty-kitchen-sink-with-sponge-rubber-gloves_23-2149021644.jpg", imageAlt: "Plumber repairing an exterior water spigot."}
|
|
||||||
]}
|
|
||||||
title="Our Plumbing Work Gallery"
|
|
||||||
description="Discover the quality and range of plumbing services provided by Doral Plumbing Co. Each project reflects our commitment to excellence and customer satisfaction."
|
|
||||||
tag="Recent Projects"
|
|
||||||
tagAnimation="opacity"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
},
|
||||||
<FooterBaseReveal
|
{
|
||||||
columns={[
|
name: "Services",
|
||||||
{
|
id: "features",
|
||||||
title: "Services", items: [
|
|
||||||
{
|
},
|
||||||
label: "Faucet Repair", href: "/services#faucet"},
|
{
|
||||||
{
|
name: "Gallery",
|
||||||
label: "Water Heaters", href: "/services#water-heaters"},
|
id: "gallery",
|
||||||
{
|
|
||||||
label: "Pipe Repair", href: "/services#pipes"},
|
},
|
||||||
{
|
{
|
||||||
label: "Drain Cleaning", href: "/services#drains"},
|
name: "Reviews",
|
||||||
],
|
id: "testimonials",
|
||||||
},
|
|
||||||
{
|
},
|
||||||
title: "Company", items: [
|
{
|
||||||
{
|
name: "FAQ",
|
||||||
label: "About Us", href: "/about"},
|
id: "faq",
|
||||||
{
|
|
||||||
label: "Our Work", href: "/gallery"},
|
},
|
||||||
{
|
{
|
||||||
label: "Reviews", href: "/reviews"},
|
name: "Contact",
|
||||||
{
|
id: "contact",
|
||||||
label: "Contact", href: "/contact"},
|
|
||||||
],
|
},
|
||||||
},
|
]}
|
||||||
{
|
brandName="Doral Plumbing Co."
|
||||||
title: "Legal", items: [
|
button={{
|
||||||
{
|
text: "Call Us Today!",
|
||||||
label: "Privacy Policy", href: "#"},
|
href: "tel:786-977-5727",
|
||||||
{
|
}}
|
||||||
label: "Terms of Service", href: "#"},
|
animateOnLoad={true}
|
||||||
],
|
/>
|
||||||
},
|
</div>
|
||||||
]}
|
|
||||||
copyrightText="© 2024 Doral Plumbing Co. All rights reserved."
|
<div id="feature" data-section="feature">
|
||||||
/>
|
<FeatureCardMedia
|
||||||
</div>
|
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>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -32,21 +32,21 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home", href: "/"},
|
name: "Home", id: "/"},
|
||||||
{
|
{
|
||||||
name: "Why Us", id: "about"},
|
name: "Why Us", id: "/about"},
|
||||||
{
|
{
|
||||||
name: "Services", id: "features"},
|
name: "Services", id: "/services"},
|
||||||
{
|
{
|
||||||
name: "Gallery", href: "/gallery"},
|
name: "Gallery", id: "/gallery"},
|
||||||
{
|
{
|
||||||
name: "Reviews", id: "testimonials"},
|
name: "Reviews", id: "/reviews"},
|
||||||
{
|
{
|
||||||
name: "FAQ", id: "faq"},
|
name: "FAQ", id: "/faq"},
|
||||||
{
|
{
|
||||||
name: "Contact", id: "contact"},
|
name: "Contact", id: "/contact"},
|
||||||
]}
|
]}
|
||||||
brandName="Doral Plumbing Co."
|
brandName="Tyrone and Sons Plumbing"
|
||||||
button={{
|
button={{
|
||||||
text: "Call Us Today!", href: "tel:786-977-5727"}}
|
text: "Call Us Today!", href: "tel:786-977-5727"}}
|
||||||
animateOnLoad={true}
|
animateOnLoad={true}
|
||||||
@@ -55,8 +55,8 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroLogo
|
<HeroLogo
|
||||||
logoText="Doral Plumbing Co."
|
logoText="Tyrone and Sons Plumbing"
|
||||||
description="Your trusted local experts in Doral with a 4.8-star rating. We handle all plumbing needs from leaky faucets to water heater installations, delivering prompt, reliable, and high-quality service."
|
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={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Schedule Service", href: "/contact"},
|
text: "Schedule Service", href: "/contact"},
|
||||||
@@ -65,7 +65,7 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/tools-materials-sanitary-works_93675-131721.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/tools-materials-sanitary-works_93675-131721.jpg"
|
||||||
imageAlt="Professional plumber with tools, ready for service."
|
imageAlt="Plumbing tools and materials, ready for service."
|
||||||
showDimOverlay={true}
|
showDimOverlay={true}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -73,14 +73,14 @@ export default function LandingPage() {
|
|||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<TestimonialAboutCard
|
<TestimonialAboutCard
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
tag="Why Choose Us"
|
tag="Why Choose Tyrone and Sons"
|
||||||
tagAnimation="opacity"
|
tagAnimation="opacity"
|
||||||
title="Doral's Top-Rated Plumbing Experts"
|
title="Tyrone and Sons: 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."
|
description="With a 4.8-star rating and over 20 years of dedicated service, 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."
|
||||||
subdescription="We pride ourselves on professionalism, transparent pricing, and customer satisfaction. Your plumbing needs are our priority."
|
subdescription="We pride ourselves on professionalism, transparent pricing, and customer satisfaction. Your plumbing needs are our priority."
|
||||||
icon={Gauge}
|
icon={Gauge}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/plumber-repair-experienced-attentive-middleaged-man-examining-bottom-kitchen-sink_259150-58266.jpg"
|
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."
|
imageAlt="Experienced plumber examining a kitchen sink."
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -96,13 +96,13 @@ export default function LandingPage() {
|
|||||||
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,
|
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?_wi=1", imageAlt: "Technician installing a new water heater."},
|
||||||
{
|
{
|
||||||
id: 3,
|
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?_wi=2", imageAlt: "Plumber repairing pipes underground."},
|
||||||
]}
|
]}
|
||||||
title="Comprehensive Plumbing Solutions"
|
title="Tyrone and Sons: Comprehensive Plumbing Solutions"
|
||||||
description="From minor leaks to major installations, Doral Plumbing Co. offers a full spectrum of services to keep your plumbing system running smoothly."
|
description="From minor leaks to major installations, Tyrone and Sons Plumbing offers a full spectrum of services to keep your plumbing system running smoothly in Doral and Miami."
|
||||||
tag="Our Services"
|
tag="Our Services"
|
||||||
tagAnimation="opacity"
|
tagAnimation="opacity"
|
||||||
/>
|
/>
|
||||||
@@ -116,16 +116,16 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
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 by Tyrone and Sons", price: "View Project", imageSrc: "http://img.b2bpic.net/free-photo/woman-preparing-relaxing-bath_23-2148976865.jpg", imageAlt: "Newly installed modern kitchen sink by Tyrone and Sons."},
|
||||||
{
|
{
|
||||||
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 by Tyrone and Sons", 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 by Tyrone and Sons."},
|
||||||
{
|
{
|
||||||
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 Installation by Tyrone and Sons", 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 by Tyrone and Sons."},
|
||||||
{
|
{
|
||||||
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 Installation by Tyrone and Sons", price: "View Project", imageSrc: "http://img.b2bpic.net/free-photo/girl-gym_1157-14927.jpg", imageAlt: "Residential water softener system installation by Tyrone and Sons."},
|
||||||
]}
|
]}
|
||||||
title="Our Work Speaks for Itself"
|
title="Tyrone and Sons' Work Speaks for Itself"
|
||||||
description="Explore a selection of our recent projects, showcasing the quality and craftsmanship Doral Plumbing Co. brings to every job."
|
description="Explore a selection of our recent projects, showcasing the quality and craftsmanship Tyrone and Sons Plumbing brings to every job in Doral and Miami."
|
||||||
tag="Project Gallery"
|
tag="Project Gallery"
|
||||||
tagAnimation="opacity"
|
tagAnimation="opacity"
|
||||||
/>
|
/>
|
||||||
@@ -151,8 +151,8 @@ export default function LandingPage() {
|
|||||||
id: "4", name: "Sophia G.", role: "Property Manager", company: "Miami, FL", rating: 5,
|
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"},
|
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"
|
title="What Our Customers Say About Tyrone and Sons"
|
||||||
description="Hear directly from satisfied clients about their experience with Doral Plumbing Co.'s professional and efficient services."
|
description="Hear directly from satisfied clients about their experience with Tyrone and Sons Plumbing's professional and efficient services."
|
||||||
tag="Client Reviews"
|
tag="Client Reviews"
|
||||||
tagAnimation="opacity"
|
tagAnimation="opacity"
|
||||||
/>
|
/>
|
||||||
@@ -164,17 +164,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
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: "faq1", title: "What areas do you serve?", content: "Tyrone and Sons Plumbing proudly serves 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, Tyrone and Sons Plumbing understands plumbing emergencies can happen at any time. Call us directly at 786-977-5727 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: "Tyrone and Sons Plumbing strives 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 at Tyrone and Sons Plumbing are fully licensed, insured, and highly experienced to provide you with peace of mind and professional service."},
|
||||||
]}
|
]}
|
||||||
title="Frequently Asked Questions"
|
title="Frequently Asked Questions About Tyrone and Sons Plumbing"
|
||||||
description="Find quick answers to common questions about our plumbing services."
|
description="Find quick answers to common questions about Tyrone and Sons Plumbing services in Doral, Miami."
|
||||||
tag="Got Questions?"
|
tag="Got Questions for Tyrone and Sons?"
|
||||||
tagAnimation="opacity"
|
tagAnimation="opacity"
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -185,7 +185,7 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain"}}
|
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"
|
text="Need expert plumbing assistance in Doral? Contact Tyrone and Sons Plumbing today for reliable service and lasting solutions. \n\nAddress: 10430 NW 29th Terrace Suite 9736, Miami, FL 33172\nPhone: 786-977-5727"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Get a Free Quote", href: "/contact"},
|
text: "Get a Free Quote", href: "/contact"},
|
||||||
@@ -213,7 +213,7 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{
|
{
|
||||||
label: "About Us", href: "/about"},
|
label: "Why Us", href: "/about"},
|
||||||
{
|
{
|
||||||
label: "Our Work", href: "/gallery"},
|
label: "Our Work", href: "/gallery"},
|
||||||
{
|
{
|
||||||
@@ -231,7 +231,7 @@ export default function LandingPage() {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
copyrightText="© 2024 Doral Plumbing Co. All rights reserved."
|
copyrightText="© 2024 Tyrone and Sons Plumbing. All rights reserved."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
@@ -2,11 +2,13 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
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 NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
|
||||||
|
|
||||||
export default function ReviewsPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-shift"
|
defaultButtonVariant="text-shift"
|
||||||
@@ -21,97 +23,227 @@ export default function ReviewsPage() {
|
|||||||
headingFontWeight="light"
|
headingFontWeight="light"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home", href: "/"},
|
name: "Home",
|
||||||
{
|
id: "hero",
|
||||||
name: "Why Us", href: "/why-us"},
|
|
||||||
{
|
|
||||||
name: "Services", id: "features"},
|
|
||||||
{
|
|
||||||
name: "Gallery", id: "gallery"},
|
|
||||||
{
|
|
||||||
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="reviews-content" data-section="reviews-content">
|
},
|
||||||
<TestimonialCardOne
|
{
|
||||||
animationType="slide-up"
|
name: "Why Us",
|
||||||
textboxLayout="default"
|
id: "about",
|
||||||
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="Our 4.8-Star Rated Customer Reviews"
|
|
||||||
description="Hear directly from satisfied clients about their experience with Doral Plumbing Co.'s professional and efficient services."
|
|
||||||
tag="Client Reviews"
|
|
||||||
tagAnimation="opacity"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
},
|
||||||
<FooterBaseReveal
|
{
|
||||||
columns={[
|
name: "Services",
|
||||||
{
|
id: "features",
|
||||||
title: "Services", items: [
|
|
||||||
{
|
},
|
||||||
label: "Faucet Repair", href: "/services#faucet"},
|
{
|
||||||
{
|
name: "Gallery",
|
||||||
label: "Water Heaters", href: "/services#water-heaters"},
|
id: "gallery",
|
||||||
{
|
|
||||||
label: "Pipe Repair", href: "/services#pipes"},
|
},
|
||||||
{
|
{
|
||||||
label: "Drain Cleaning", href: "/services#drains"},
|
name: "Reviews",
|
||||||
],
|
id: "testimonials",
|
||||||
},
|
|
||||||
{
|
},
|
||||||
title: "Company", items: [
|
{
|
||||||
{
|
name: "FAQ",
|
||||||
label: "About Us", href: "/why-us"},
|
id: "faq",
|
||||||
{
|
|
||||||
label: "Our Work", href: "/gallery"},
|
},
|
||||||
{
|
{
|
||||||
label: "Reviews", href: "/reviews"},
|
name: "Contact",
|
||||||
{
|
id: "contact",
|
||||||
label: "Contact", href: "/contact"},
|
|
||||||
],
|
},
|
||||||
},
|
]}
|
||||||
{
|
brandName="Doral Plumbing Co."
|
||||||
title: "Legal", items: [
|
button={{
|
||||||
{
|
text: "Call Us Today!",
|
||||||
label: "Privacy Policy", href: "#"},
|
href: "tel:786-977-5727",
|
||||||
{
|
}}
|
||||||
label: "Terms of Service", href: "#"},
|
animateOnLoad={true}
|
||||||
],
|
/>
|
||||||
},
|
</div>
|
||||||
]}
|
|
||||||
copyrightText="© 2024 Doral Plumbing Co. All rights reserved."
|
<div id="testimonial" data-section="testimonial">
|
||||||
/>
|
<TestimonialCardThirteen
|
||||||
</div>
|
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>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,107 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
||||||
import ReactLenis from "lenis/react";
|
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
|
||||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
|
||||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
|
||||||
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"},
|
|
||||||
{
|
|
||||||
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-content" data-section="why-us-content">
|
|
||||||
<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="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: "/why-us"},
|
|
||||||
{
|
|
||||||
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>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user