Merge version_1 into main #10

Merged
bender merged 1 commits from version_1 into main 2026-04-02 19:26:33 +00:00

View File

@@ -1,6 +1,5 @@
'use client';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel';
import FeatureBento from '@/components/sections/feature/FeatureBento';
@@ -8,10 +7,12 @@ import MediaAbout from '@/components/sections/about/MediaAbout';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Zap, Shield } from 'lucide-react';
import { Shield, ArrowRight, Star, CheckCircle } from 'lucide-react';
const navItems = [
{ name: "Home", id: "/" },
{ name: 'Home', id: '/' },
{ name: 'About', id: '/about' },
{ name: 'Contact', id: '/contact' }
];
export default function Page() {
@@ -33,65 +34,58 @@ export default function Page() {
</div>
<div id="hero" data-section="hero">
<HeroSplitDoubleCarousel
title="Elite Home Care & Air Quality Specialists"
description="Expert maintenance services delivered with precision and transparency."
background={{ variant: "gradient-bars" }}
leftCarouselItems={[{ imageSrc: "https://images.unsplash.com/photo-1513694203232-a19a4f08e426?q=80&w=800" }]}
rightCarouselItems={[{ imageSrc: "https://images.unsplash.com/photo-1628177142898-93e36e4e3a50?q=80&w=800" }]}
title="Elite Home Care & Air Quality Specialists"
description="Expert home maintenance services in Pennsylvania. Roofing, air duct cleaning, and chimney services delivered with precision and transparency."
background={{ variant: 'radial-gradient' }}
leftCarouselItems={[{ imageSrc: 'https://images.unsplash.com/photo-1600585154340-be6161a56a0c' }]}
rightCarouselItems={[{ imageSrc: 'https://images.unsplash.com/photo-1621905251189-08b45d6a268e' }]}
/>
</div>
<div id="services" data-section="services">
<FeatureBento
title="Our Core Services"
description="Comprehensive solutions for a healthier, safer home."
textboxLayout="default"
useInvertedBackground={false}
animationType="blur-reveal"
features={[
{
title: "Roofing & Exterior", description: "Professional inspection and repair for lasting protection.", bentoComponent: "reveal-icon", icon: Shield
},
{
title: "Air Quality", description: "Advanced duct cleaning for improved indoor living.", bentoComponent: "reveal-icon", icon: Zap
}
]}
title="Our Services"
description="Comprehensive home maintenance solutions"
textboxLayout="default"
animationType="blur-reveal"
useInvertedBackground={false}
features={[
{ title: "Air Duct Cleaning", description: "Improve your indoor air quality with professional cleaning.", bentoComponent: 'reveal-icon', icon: Shield },
{ title: "Roofing", description: "High-quality roof repairs and installations.", bentoComponent: 'reveal-icon', icon: CheckCircle },
{ title: "Chimney Care", description: "Ensure your home is safe with expert chimney maintenance.", bentoComponent: 'reveal-icon', icon: Star }
]}
/>
</div>
<div id="about" data-section="about">
<MediaAbout
title="About A&M Home Services"
description="We are committed to excellence, integrity, and your total satisfaction."
imageSrc="https://images.unsplash.com/photo-1581092160607-ee22621dd756?q=80&w=800"
useInvertedBackground={false}
title="Expertise You Can Trust"
description="With years of experience, we provide top-tier home services across Pennsylvania."
imageSrc="https://images.unsplash.com/photo-1581578731548-c64695cc6952"
/>
</div>
<div id="reviews" data-section="reviews">
<TestimonialCardFive
title="What Our Clients Say"
textboxLayout="default"
useInvertedBackground={false}
description="See what our customers have to say about our services."
testimonials={[{
id: "1", name: "Sarah J.", date: "2023-10-12", title: "Excellent Experience", quote: "Professional, efficient, and highly recommended.", tag: "Roofing", avatarSrc: "https://i.pravatar.cc/150?u=sarahj"
}]}
title="Client Testimonials"
description="What our clients say about us"
textboxLayout="default"
testimonials={[
{ id: '1', name: 'John Doe', date: '2023-10-01', title: 'Great Service', quote: 'A&M Home Services transformed our home.', tag: 'Roofing' }
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Ready to get started?"
title="Contact Our Team"
description="Schedule your service consultation today."
buttons={[{ text: "Call Now", href: "tel:+15551234567" }]}
background={{ variant: "plain" }}
useInvertedBackground={false}
tag="Contact Us"
title="Get A Free Quote"
description="Ready to improve your home? Reach out to us today."
buttons={[{ text: 'Contact Us', href: '/contact' }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="A&M Home Services"
columns={[{ items: [{ label: "Home", href: "/" }] }]}
logoText="A&M Home Services"
columns={[{ items: [{ label: 'Home', href: '/' }, { label: 'About', href: '/about' }, { label: 'Contact', href: '/contact' }] }]}
/>
</div>
</ThemeProvider>
);
}
}