Merge version_3 into main
Merge version_3 into main
This commit was merged in pull request #2.
This commit is contained in:
109
src/app/about-us/page.tsx
Normal file
109
src/app/about-us/page.tsx
Normal file
@@ -0,0 +1,109 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import { Users } from 'lucide-react';
|
||||
|
||||
export default function AboutUsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="smallMedium"
|
||||
sizing="mediumLarge"
|
||||
background="blurBottom"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "About Us", id: "/about-us"},
|
||||
{
|
||||
name: "Testimonials", id: "/#testimonials"},
|
||||
{
|
||||
name: "FAQ", id: "/#faq"},
|
||||
{
|
||||
name: "Contact", id: "/#contact"},
|
||||
]}
|
||||
brandName="Pleasanton Air Duct Repair"
|
||||
button={{
|
||||
text: "Get a Free Quote", href: "/#contact"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
useInvertedBackground={true}
|
||||
title="Your Trusted Partner for Cleaner Air"
|
||||
description="At Pleasanton Air Duct Repair Services, we're dedicated to improving the air quality and efficiency of homes and businesses in our community. With years of expertise, our certified technicians use advanced techniques and state-of-the-art equipment to deliver thorough cleaning, reliable repairs, and exceptional customer service. We believe in transparency, integrity, and ensuring every client breathes easier."
|
||||
tag="About Us"
|
||||
tagIcon={Users}
|
||||
tagAnimation="blur-reveal"
|
||||
buttons={[
|
||||
{
|
||||
text: "Why Choose Us", href: "/#contact"},
|
||||
]}
|
||||
buttonAnimation="opacity"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/mechanic-repairing-bicycle_23-2148138533.jpg"
|
||||
imageAlt="HVAC technician inspecting an air duct system with a flashlight"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Pleasanton Air Duct Repair"
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Duct Cleaning", href: "/services"},
|
||||
{
|
||||
label: "Duct Repair", href: "/services"},
|
||||
{
|
||||
label: "Air Purification", href: "/services"},
|
||||
{
|
||||
label: "Estimates", href: "/#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us", href: "/about-us"},
|
||||
{
|
||||
label: "Testimonials", href: "/#testimonials"},
|
||||
{
|
||||
label: "FAQ", href: "/#faq"},
|
||||
{
|
||||
label: "Contact", href: "/#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms of Service", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 Pleasanton Air Duct Repair. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -4,14 +4,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import { Users } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -32,21 +29,21 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "#hero"},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Services", id: "#services"},
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "About Us", id: "#about"},
|
||||
name: "About Us", id: "/about-us"},
|
||||
{
|
||||
name: "Testimonials", id: "#testimonials"},
|
||||
name: "Testimonials", id: "/#testimonials"},
|
||||
{
|
||||
name: "FAQ", id: "#faq"},
|
||||
name: "FAQ", id: "/#faq"},
|
||||
{
|
||||
name: "Contact", id: "#contact"},
|
||||
name: "Contact", id: "/#contact"},
|
||||
]}
|
||||
brandName="Pleasanton Air Duct Repair"
|
||||
button={{
|
||||
text: "Get a Free Quote", href: "#contact"}}
|
||||
text: "Get a Free Quote", href: "/#contact"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -57,9 +54,9 @@ export default function LandingPage() {
|
||||
description="Breathe cleaner, healthier air with Pleasanton's premier air duct cleaning and repair specialists. Experience unparalleled service and improve your home's air quality today."
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Your Free Estimate", href: "#contact"},
|
||||
text: "Get Your Free Estimate", href: "/#contact"},
|
||||
{
|
||||
text: "Explore Our Services", href: "#services"},
|
||||
text: "Explore Our Services", href: "/services"},
|
||||
]}
|
||||
buttonAnimation="opacity"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/meticulous-wiremen-expertly-refilling-freon-external-air-conditioner-while-using-manifold-measurement-device-closely-measure-pressure-hvac-system-ensuring-perfect-cooling-performance_482257-68069.jpg"
|
||||
@@ -68,44 +65,9 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
useInvertedBackground={true}
|
||||
title="Your Trusted Partner for Cleaner Air"
|
||||
description="At Pleasanton Air Duct Repair Services, we're dedicated to improving the air quality and efficiency of homes and businesses in our community. With years of expertise, our certified technicians use advanced techniques and state-of-the-art equipment to deliver thorough cleaning, reliable repairs, and exceptional customer service. We believe in transparency, integrity, and ensuring every client breathes easier."
|
||||
tag="About Us"
|
||||
tagIcon={Users}
|
||||
tagAnimation="blur-reveal"
|
||||
buttons={[
|
||||
{
|
||||
text: "Why Choose Us", href: "#contact"},
|
||||
]}
|
||||
buttonAnimation="opacity"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/mechanic-repairing-bicycle_23-2148138533.jpg"
|
||||
imageAlt="HVAC technician inspecting an air duct system with a flashlight"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardMedia
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "service-inspection", title: "Thorough Air Duct Inspection", description: "Utilizing high-resolution cameras, we perform a meticulous inspection of your entire ductwork to identify blockages, leaks, and damage. This ensures a precise and effective cleaning and repair plan.", tag: "Assessment", imageSrc: "http://img.b2bpic.net/free-photo/close-up-circuit-reparing-tool_23-2148419205.jpg", imageAlt: "Air duct inspection camera"},
|
||||
{
|
||||
id: "service-cleaning", title: "Advanced Duct Cleaning", description: "Our powerful, truck-mounted vacuum systems and specialized rotary brushes remove years of dust, allergens, mold, and debris from your ducts, significantly improving indoor air quality and HVAC efficiency.", tag: "Clean Air", imageSrc: "http://img.b2bpic.net/free-photo/close-up-ventilation-system_23-2149388949.jpg", imageAlt: "Powerful vacuum cleaning air ducts"},
|
||||
{
|
||||
id: "service-repair", title: "Expert Duct Repair & Sealing", description: "We specialize in repairing damaged ductwork, sealing leaks, and insulating compromised sections. This restores optimal airflow, prevents energy loss, and reduces utility bills.", tag: "Efficiency", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-wearing-helmets-work_23-2149366667.jpg", imageAlt: "Technician repairing a damaged air duct"},
|
||||
{
|
||||
id: "service-purification", title: "Air Purification Systems", description: "Enhance your air quality further with our state-of-the-art air purification and sanitization solutions, including UV lights and advanced filtration systems to eliminate airborne contaminants.", tag: "Health", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-using-dry-shampoo-home_23-2150689706.jpg", imageAlt: "Air purification system diagram"},
|
||||
]}
|
||||
title="Our Comprehensive Air Duct Solutions"
|
||||
description="From detailed inspections to advanced cleaning and essential repairs, we cover every aspect of your air duct system to ensure optimal performance and pristine air quality."
|
||||
tag="Our Services"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofOne
|
||||
@@ -187,7 +149,7 @@ export default function LandingPage() {
|
||||
{
|
||||
text: "Call Us Now", href: "tel:+19251234567"},
|
||||
{
|
||||
text: "Request a Quote Online", href: "#"},
|
||||
text: "Request a Quote Online", href: "/#contact"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -199,25 +161,25 @@ export default function LandingPage() {
|
||||
{
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Duct Cleaning", href: "#services"},
|
||||
label: "Duct Cleaning", href: "/services"},
|
||||
{
|
||||
label: "Duct Repair", href: "#services"},
|
||||
label: "Duct Repair", href: "/services"},
|
||||
{
|
||||
label: "Air Purification", href: "#services"},
|
||||
label: "Air Purification", href: "/services"},
|
||||
{
|
||||
label: "Estimates", href: "#contact"},
|
||||
label: "Estimates", href: "/#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us", href: "#about"},
|
||||
label: "About Us", href: "/about-us"},
|
||||
{
|
||||
label: "Testimonials", href: "#testimonials"},
|
||||
label: "Testimonials", href: "/#testimonials"},
|
||||
{
|
||||
label: "FAQ", href: "#faq"},
|
||||
label: "FAQ", href: "/#faq"},
|
||||
{
|
||||
label: "Contact", href: "#contact"},
|
||||
label: "Contact", href: "/#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
111
src/app/services/page.tsx
Normal file
111
src/app/services/page.tsx
Normal file
@@ -0,0 +1,111 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
|
||||
export default function ServicesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="smallMedium"
|
||||
sizing="mediumLarge"
|
||||
background="blurBottom"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "About Us", id: "/about-us"},
|
||||
{
|
||||
name: "Testimonials", id: "/#testimonials"},
|
||||
{
|
||||
name: "FAQ", id: "/#faq"},
|
||||
{
|
||||
name: "Contact", id: "/#contact"},
|
||||
]}
|
||||
brandName="Pleasanton Air Duct Repair"
|
||||
button={{
|
||||
text: "Get a Free Quote", href: "/#contact"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardMedia
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "service-inspection", title: "Thorough Air Duct Inspection", description: "Utilizing high-resolution cameras, we perform a meticulous inspection of your entire ductwork to identify blockages, leaks, and damage. This ensures a precise and effective cleaning and repair plan.", tag: "Assessment", imageSrc: "http://img.b2bpic.net/free-photo/close-up-circuit-reparing-tool_23-2148419205.jpg", imageAlt: "Air duct inspection camera"},
|
||||
{
|
||||
id: "service-cleaning", title: "Advanced Duct Cleaning", description: "Our powerful, truck-mounted vacuum systems and specialized rotary brushes remove years of dust, allergens, mold, and debris from your ducts, significantly improving indoor air quality and HVAC efficiency.", tag: "Clean Air", imageSrc: "http://img.b2bpic.net/free-photo/close-up-ventilation-system_23-2149388949.jpg", imageAlt: "Powerful vacuum cleaning air ducts"},
|
||||
{
|
||||
id: "service-repair", title: "Expert Duct Repair & Sealing", description: "We specialize in repairing damaged ductwork, sealing leaks, and insulating compromised sections. This restores optimal airflow, prevents energy loss, and reduces utility bills.", tag: "Efficiency", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-wearing-helmets-work_23-2149366667.jpg", imageAlt: "Technician repairing a damaged air duct"},
|
||||
{
|
||||
id: "service-purification", title: "Air Purification Systems", description: "Enhance your air quality further with our state-of-the-art air purification and sanitization solutions, including UV lights and advanced filtration systems to eliminate airborne contaminants.", tag: "Health", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-using-dry-shampoo-home_23-2150689706.jpg", imageAlt: "Air purification system diagram"},
|
||||
]}
|
||||
title="Our Comprehensive Air Duct Solutions"
|
||||
description="From detailed inspections to advanced cleaning and essential repairs, we cover every aspect of your air duct system to ensure optimal performance and pristine air quality."
|
||||
tag="Our Services"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Pleasanton Air Duct Repair"
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Duct Cleaning", href: "/services"},
|
||||
{
|
||||
label: "Duct Repair", href: "/services"},
|
||||
{
|
||||
label: "Air Purification", href: "/services"},
|
||||
{
|
||||
label: "Estimates", href: "/#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us", href: "/about-us"},
|
||||
{
|
||||
label: "Testimonials", href: "/#testimonials"},
|
||||
{
|
||||
label: "FAQ", href: "/#faq"},
|
||||
{
|
||||
label: "Contact", href: "/#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms of Service", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 Pleasanton Air Duct Repair. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user