Switch to version 1: remove src/app/faq/page.tsx

This commit is contained in:
2026-03-25 22:00:10 +00:00
parent 365aa43876
commit ac1acdfd70

View File

@@ -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>
);
}