Add src/app/services/page.tsx

This commit is contained in:
2026-04-15 21:38:22 +00:00
parent ae03677472
commit 4c8eef1548

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

@@ -0,0 +1,101 @@
"use client";
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 { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Target, Users, TrendingUp, Lightbulb, Zap, ShieldCheck, BarChart3, Clock } 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: "Contact", id: "/contact" },
];
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="none"
cardStyle="glass-elevated"
primaryButtonStyle="shadow"
secondaryButtonStyle="solid"
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?"
background={{ variant: "plain" }}
useInvertedBackground={false}
buttons={[
{ text: "Schedule Your Discovery Call", href: "/contact" },
]}
/>
<FooterLogoEmphasis
logoText="Coach"
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }] },
{ items: [{ label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}