Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-03-24 13:22:40 +00:00

133
src/app/services/page.tsx Normal file
View File

@@ -0,0 +1,133 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { Sparkles, Wrench, Search, Leaf, Droplet, Bolt } from 'lucide-react';
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="smallMedium"
sizing="largeSmallSizeLargeTitles"
background="circleGradient"
cardStyle="solid"
primaryButtonStyle="double-inset"
secondaryButtonStyle="layered"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "About Us", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Gallery", id: "/gallery" },
{ name: "Testimonials", id: "/testimonials" },
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/contact" }
]}
brandName="Optimal Green Roofing"
/>
</div>
<div id="hero-services" data-section="hero-services">
<HeroLogo
logoText="Our Premium Roofing Services"
description="Optimal Green Roofing delivers a full spectrum of high-quality, sustainable roofing solutions tailored to the unique needs of discerning homeowners in Orlando."
buttons={[
{ text: "Get Free Estimate", href: "/contact" },
{ text: "View Our Work", href: "/gallery" }
]}
imageSrc="http://img.b2bpic.net/free-photo/man-working-roof-with-drill_23-2148748774.jpg?_wi=1"
imageAlt="Luxury home with newly installed roof by Optimal Green Roofing"
/>
</div>
<div id="detailed-services" data-section="detailed-services">
<FeatureCardTwentySix
textboxLayout="default"
useInvertedBackground={false}
features={[
{
title: "Roof Replacement", description: "Comprehensive replacement services using premium, eco-friendly materials to enhance durability, energy efficiency, and curb appeal.", buttonIcon: Sparkles,
imageSrc: "http://img.b2bpic.net/free-photo/handsome-young-carpenter-working-with-experienced-man_329181-15677.jpg?_wi=1"
},
{
title: "Storm & Damage Repair", description: "Expert repair for all types of storm damage, from minor leaks to significant structural issues, restoring your roof to its optimal condition swiftly.", buttonIcon: Wrench,
imageSrc: "http://img.b2bpic.net/free-photo/technician-engineer-checks-maintenance-solar-cell-panels_1150-4262.jpg"
},
{
title: "Roof Inspections & Maintenance", description: "Thorough inspections and proactive maintenance programs to identify potential issues early, extending your roof's lifespan and preventing costly repairs.", buttonIcon: Search,
imageSrc: "http://img.b2bpic.net/free-photo/diverse-team-members-brainstrom-together-informal-meeting_273609-28644.jpg"
},
{
title: "Sustainable & Green Roofing", description: "Specializing in environmentally friendly roofing solutions, including cool roofs, solar-ready installations, and recyclable materials for a greener home.", buttonIcon: Leaf,
imageSrc: "http://img.b2bpic.net/free-photo/man-working-roof-with-drill_23-2148748774.jpg?_wi=2"
},
{
title: "Gutter & Drainage Systems", description: "Installation and repair of high-performance gutter and drainage systems to protect your home's foundation and landscaping from water damage.", buttonIcon: Droplet,
imageSrc: "http://img.b2bpic.net/free-photo/roofing-contractor-with-a-ladder-and-a-bucket_107409-1748.jpg"
},
{
title: "Emergency Roofing Services", description: "24/7 rapid response for urgent roofing needs, ensuring immediate protection and temporary repairs to prevent further damage to your property.", buttonIcon: Bolt,
imageSrc: "http://img.b2bpic.net/free-photo/construction-worker-working-on-roof_1150-4389.jpg"
}
]}
title="Our Full Range of Expert Roofing Services"
description="Optimal Green Roofing provides comprehensive, high-quality solutions for every aspect of your residential roofing needs, backed by unparalleled expertise and commitment to sustainability."
/>
</div>
<div id="services-testimonials" data-section="services-testimonials">
<TestimonialCardTwo
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{
id: "1", name: "Sarah Johnson", role: "Homeowner", testimonial: "Optimal Green Roofing's replacement service was flawless. The team was efficient, clean, and the new roof looks fantastic while also reducing our energy bills. Truly professional!", imageSrc: "http://img.b2bpic.net/free-photo/aged-middle-expression-calling-business_1262-2838.jpg?_wi=1"
},
{
id: "2", name: "Michael Chen", role: "Property Manager", testimonial: "We needed urgent storm repair, and Optimal Green Roofing responded quickly. Their repair work was impeccable, and they handled all the complexities with precision.", imageSrc: "http://img.b2bpic.net/free-photo/happy-young-businessman-working-document-workplace_23-2147839977.jpg?_wi=1"
},
{
id: "3", name: "Emily Rodriguez", role: "Homeowner", testimonial: "The sustainable roofing options provided by Optimal Green Roofing were impressive. Our new cool roof is not only eco-friendly but also keeps our home comfortable. Excellent service!", imageSrc: "http://img.b2bpic.net/free-photo/man-making-horns_1154-102.jpg?_wi=1"
}
]}
title="Clients Love Our Service Excellence"
description="Hear from luxury homeowners who have experienced the superior craftsmanship and dedicated service of Optimal Green Roofing."
/>
</div>
<div id="services-cta" data-section="services-cta">
<ContactCenter
useInvertedBackground={false}
background={{ variant: "radial-gradient" }}
tag="Next Step"
title="Ready for a Superior Roofing Experience?"
description="Contact us today for a free, no-obligation estimate and discover the Optimal Green Roofing difference."
buttonText="Request Free Estimate"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Optimal Green Roofing"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}