Files
a8021465-876c-46e6-b930-d98…/src/app/services/page.tsx
2026-03-26 00:44:17 +00:00

154 lines
6.2 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="mediumLarge"
sizing="largeSmallSizeMediumTitles"
background="none"
cardStyle="glass-depth"
primaryButtonStyle="flat"
secondaryButtonStyle="solid"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home", href: "/"},
{
name: "About", href: "/"},
{
name: "Services", href: "/services"},
{
name: "Impact", href: "/"},
{
name: "Testimonials", href: "/"},
{
name: "FAQ", href: "/"},
{
name: "Contact", href: "/"},
]}
brandName="Clayton Electric"
bottomLeftText="Your Trusted Energy Partner"
bottomRightText="info@claytonelectric.com"
/>
</div>
<div id="services-main" data-section="services-main">
<FeatureCardTwelve
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
{
id: "res-service", label: "Home", title: "Residential Services", items: [
"New Home Wiring", "Panel Upgrades & Repairs", "Lighting Installation", "Smart Home Integration"],
buttons: [
{
text: "View Details", href: "/services#res-service"},
],
},
{
id: "com-service", label: "Business", title: "Commercial Solutions", items: [
"Commercial Wiring", "Electrical System Maintenance", "Energy Efficiency Audits", "Backup Generator Installation"],
buttons: [
{
text: "View Details", href: "/services#com-service"},
],
},
{
id: "emergency", label: "24/7", title: "Emergency Repairs", items: [
"Rapid Response Team", "Power Outage Restoration", "Fault Finding & Repair", "Storm Damage Assessment"],
buttons: [
{
text: "Call Now", href: "/contact"},
],
},
{
id: "renewable", label: "Eco-Friendly", title: "Renewable Energy", items: [
"Solar Panel Installation", "EV Charging Stations", "Energy Storage Solutions", "Green Energy Consulting"],
buttons: [
{
text: "Learn More", href: "/services#renewable"},
],
},
]}
title="Our Comprehensive Electrical Services"
description="Explore the full range of expert electrical solutions Clayton Electric provides, tailored for residential, commercial, and renewable energy needs."
tag="Detailed Services"
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{
variant: "gradient-bars"}}
tag="Get in Touch"
title="Request a Service or Quote"
description="Have an electrical project or need emergency assistance? Contact Clayton Electric today for reliable and efficient service."
inputPlaceholder="Enter your email for inquiries"
buttonText="Send Inquiry"
termsText="By clicking Send Inquiry you're confirming that you agree with our Privacy Policy."
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Home", href: "/"},
{
label: "About Us", href: "/about"},
{
label: "Services", href: "/services"},
{
label: "Our Impact", href: "/"},
],
},
{
items: [
{
label: "Testimonials", href: "/"},
{
label: "FAQ", href: "/"},
{
label: "Contact", href: "/contact"},
{
label: "Privacy Policy", href: "#"},
],
},
{
items: [
{
label: "Residential", href: "/services#res-service"},
{
label: "Commercial", href: "/services#com-service"},
{
label: "Emergency", href: "/services#emergency"},
{
label: "Renewable", href: "/services#renewable"},
],
},
]}
logoText="Clayton Electric"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}