Update src/app/services/page.tsx
This commit is contained in:
@@ -3,29 +3,42 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
|
||||
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
||||
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
|
||||
import ContactText from "@/components/sections/contact/ContactText";
|
||||
import { Circle } from "lucide-react";
|
||||
import ReactLenis from "lenis/react";
|
||||
|
||||
export default function ServicesPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingInline brandName="AirPro HVAC" navItems={[{name: "Services", id: "/services"}, {name: "About", id: "/about"}, {name: "Contact", id: "/contact"}]} />
|
||||
<HeroOverlay title="Our Premium Services" description="We provide top-tier HVAC solutions for your home and office." />
|
||||
<FeatureCardOne
|
||||
title="Service Categories"
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{ title: "Aluminum Windows", description: "High quality thermal performance windows." },
|
||||
{ title: "Doors", description: "Custom installation and design." },
|
||||
{ title: "Facades", description: "Modern and energy efficient systems." },
|
||||
{ title: "Fabrication", description: "Bespoke metal and HVAC fabrication." }
|
||||
]}
|
||||
/>
|
||||
<ContactCTA tag="Ready to start?" title="Contact us for a consultation" description="Let's discuss your project." buttons={[{text: "Contact", href: "/contact"}]} />
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline brandName="AirPro HVAC" navItems={[{name: "Home", id: "/"}, {name: "Services", id: "/services"}, {name: "About", id: "/about"}, {name: "Contact", id: "/contact"}]} button={{text: "Get a Quote", href: "/contact"}} />
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlay title="Our Premium Services" description="We provide top-tier HVAC solutions for your home and office." />
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTwentySix
|
||||
title="Service Categories"
|
||||
description="Explore our expert HVAC services designed for comfort and efficiency."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ title: "Aluminum Windows", description: "High quality thermal performance windows.", buttonIcon: Circle },
|
||||
{ title: "Doors", description: "Custom installation and design.", buttonIcon: Circle },
|
||||
{ title: "Facades", description: "Modern and energy efficient systems.", buttonIcon: Circle },
|
||||
{ title: "Fabrication", description: "Bespoke metal and HVAC fabrication.", buttonIcon: Circle }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact-cta" data-section="contact-cta">
|
||||
<ContactText
|
||||
text="Ready to start your project? Let's discuss your HVAC needs."
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user