Update src/app/services/page.tsx

This commit is contained in:
2026-04-15 21:40:37 +00:00
parent fbd76b1168
commit 3e33180544

View File

@@ -2,18 +2,18 @@
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive";
import ContactText from "@/components/sections/contact/ContactText";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import FeatureCardNine from "@/components/sections/feature/FeatureCardNine";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Target, Users, TrendingUp, Lightbulb, Zap, ShieldCheck, BarChart3, Clock } from "lucide-react";
import { Target, Users } from "lucide-react";
export default function ServicesPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Testimonials", id: "/testimonials" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
];
@@ -31,71 +31,45 @@ export default function ServicesPage() {
headingFontWeight="medium"
>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={navItems}
brandName="Coach"
button={{ text: "Book a Call", href: "/contact" }}
/>
<FeatureCardTwentyFive
tag="Our Expertise"
title="Detailed Service Offerings"
description="Comprehensive coaching programs tailored to drive measurable business impact and leadership excellence."
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
features={[
{
title: "Strategy & Operations", description: "Developing robust business models, optimizing workflows, and setting long-term strategic direction.", icon: Target,
},
{
title: "Executive Leadership", description: "One-on-one coaching to refine your decision-making, team alignment, and emotional intelligence.", icon: Users,
},
{
title: "Growth Scaling", description: "Data-driven approaches to identify bottlenecks and unlock rapid, sustainable revenue growth.", icon: TrendingUp,
},
{
title: "Cultural Transformation", description: "Building high-performance teams through improved communication and shared organizational purpose.", icon: Lightbulb,
},
{
title: "Process Optimization", description: "Streamlining your core business processes to save time and reduce operational overhead.", icon: Zap,
},
{
title: "Risk Management", description: "Proactive strategies to identify and mitigate business risks before they impact your growth.", icon: ShieldCheck,
},
]}
/>
<FeatureCardTwentyFive
tag="Benefits"
title="Why Choose Our Coaching"
description="Transform your professional journey with benefits that go beyond the balance sheet."
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={true}
features={[
{
title: "Proven Results", description: "Achieve tangible milestones through structured coaching plans backed by years of success.", icon: BarChart3,
},
{
title: "Personalized Attention", description: "Tailored sessions designed around your unique leadership style and specific business goals.", icon: Clock,
},
]}
/>
<ContactText
text="Ready to take the next step in your business transformation?"
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={navItems}
brandName="Coach"
/>
</div>
<div id="services" data-section="services">
<FeatureCardNine
title="Service Offerings"
description="Comprehensive coaching programs."
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
showStepNumbers={true}
features={[
{
title: "Strategy & Operations", description: "Optimizing business models.", phoneOne: { imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978" },
phoneTwo: { imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978" }
},
{
title: "Executive Leadership", description: "Refining decision-making.", phoneOne: { imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978" },
phoneTwo: { imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978" }
}
]}
/>
</div>
<ContactCTA
tag="Ready?"
title="Let's Connect"
description="Schedule a call today."
buttons={[{ text: "Contact", href: "/contact" }]}
background={{ variant: "plain" }}
useInvertedBackground={false}
buttons={[
{ text: "Schedule Your Discovery Call", href: "/contact" },
]}
useInvertedBackground={true}
/>
<FooterLogoEmphasis
<FooterBaseReveal
logoText="Coach"
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }] },
{ items: [{ label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
]}
columns={[{ title: "Info", items: [{ label: "Home", href: "/" }] }]}
/>
</ReactLenis>
</ThemeProvider>
);
}
}