Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-08 04:53:38 +00:00
2 changed files with 120 additions and 0 deletions

View File

@@ -34,6 +34,7 @@ export default function LandingPage() {
{ name: "FAQ", id: "faq" },
{ name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" },
{ name: "Questions", id: "/questions" },
]}
button={{ text: "Get Quote", href: "contact" }}
/>

119
src/app/questions/page.tsx Normal file
View File

@@ -0,0 +1,119 @@
"use client";
import { HelpCircle } from "lucide-react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import FaqBase from "@/components/sections/faq/FaqBase";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
export default function QuestionsPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="mediumSmall"
sizing="mediumLargeSizeLargeTitles"
background="circleGradient"
cardStyle="solid"
primaryButtonStyle="shadow"
secondaryButtonStyle="radial-glow"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
brandName="DMG Plumbing"
navItems={[
{ name: "Services", id: "/" },
{ name: "About", id: "/" },
{ name: "FAQ", id: "/" },
{ name: "Reviews", id: "/" },
{ name: "Contact", id: "/" },
{ name: "Questions", id: "/questions" },
]}
button={{ text: "Get Quote", href: "/" }}
/>
</div>
<div id="faq" data-section="faq">
<FaqBase
tag="Questions & Answers"
tagIcon={HelpCircle}
tagAnimation="slide-up"
title="Questions About DMG Plumbing Services"
description="Get answers to questions about our plumbing services, service speed, expertise, and how we can help you with your plumbing needs."
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{
id: "1", title: "How fast can DMG Plumbing respond to service requests?", content: "We pride ourselves on quick response times. For emergency plumbing issues, we typically respond within 2-4 hours depending on current demand and your location within the Houston area. For routine service calls, we can usually schedule appointments within 24-48 hours. Our team is mobile and ready to get to your location quickly to minimize disruption to your day."
},
{
id: "2", title: "What is the typical turnaround time for a plumbing repair?", content: "Most standard repairs are completed within 2-4 hours from the time we arrive at your home. Complex jobs like water heater replacements or gas line installations typically take 4-8 hours depending on the scope of work. We always provide an upfront estimate of how long the job will take so you know what to expect."
},
{
id: "3", title: "Do you offer same-day service for emergency plumbing?", content: "Yes, we do offer emergency plumbing services. If you experience a plumbing emergency during regular business hours, we can often get a technician to your home the same day. For after-hours emergencies, we have a 24/7 emergency line. Response times for emergency calls are prioritized and we work as quickly as possible to prevent water damage and other complications."
},
{
id: "4", title: "How long does it take to install a water heater?", content: "A standard water heater installation typically takes 3-5 hours. This includes removing the old unit, installing the new one, connecting all pipes and gas/electric lines, and testing to ensure everything is working properly. If complications arise or your space requires additional modifications, it may take longer. We'll let you know the expected timeframe when we arrive."
},
{
id: "5", title: "What's the fastest way to schedule a service appointment?", content: "The fastest way to get service scheduled is to call us directly at our main line. You can also request a service appointment through our website, and we'll contact you within a few hours to confirm your appointment time. Online requests are typically processed faster during business hours."
},
{
id: "6", title: "How long does a gas line inspection take?", content: "A standard gas line inspection typically takes 1-2 hours depending on the complexity of your system and the scope of the inspection. We check all connections, test for leaks using specialized equipment, and verify that everything meets current safety codes. If repairs are needed, we'll discuss options and provide a timeline."
},
{
id: "7", title: "Can you fix my leaky faucet on the same day?", content: "In most cases, yes! A simple faucet repair or replacement can often be completed within 30 minutes to 1 hour. If we need to source a specific part, we may need to schedule a return visit. Call us and describe the problem, and we can usually tell you if same-day service is possible."
},
{
id: "8", title: "What should I do if I have an emergency plumbing problem at night?", content: "Call our 24/7 emergency line immediately. We have technicians on call for after-hours emergencies including burst pipes, severe leaks, and no-hot-water situations. While response times may be slightly longer than during business hours, we prioritize emergency calls to prevent property damage. Emergency service rates apply to after-hours calls."
},
]}
faqsAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="DMG Plumbing"
columns={[
{
title: "Services", items: [
{ label: "Water Heaters", href: "/" },
{ label: "Gas Lines", href: "/" },
{ label: "Repairs", href: "/" },
{ label: "Inspections", href: "/" },
],
},
{
title: "Company", items: [
{ label: "About Us", href: "/" },
{ label: "Our Team", href: "/" },
{ label: "Reviews", href: "/" },
{ label: "FAQ", href: "/" },
],
},
{
title: "Contact", items: [
{ label: "Get Quote", href: "/" },
{ label: "Schedule Service", href: "/" },
{ label: "Emergency Service", href: "tel:+1-713-555-0123" },
{ label: "Houston, TX", href: "#" },
],
},
{
title: "Resources", items: [
{ label: "Service Areas", href: "#" },
{ label: "Tips & Advice", href: "#" },
{ label: "Why Choose Us", href: "/" },
{ label: "Contact Us", href: "/" },
],
},
]}
copyrightText="© 2025 DMG Plumbing. All rights reserved."
/>
</div>
</ThemeProvider>
);
}