Update src/app/services/page.tsx

This commit is contained in:
2026-05-07 12:45:31 +00:00
parent 0c3bc7fcea
commit 2098fdad63

View File

@@ -2,34 +2,44 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function ServicesPage() {
return (
<ThemeProvider defaultButtonVariant="icon-arrow" defaultTextAnimation="reveal-blur" borderRadius="rounded" contentWidth="medium" sizing="medium" background="none" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ThemeProvider>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Contact", id: "/contact" }
{ name: "Contact", id: "/contact" },
]}
brandName="Chandigi"
button={{ text: "Get Growth Plan", href: "/contact" }}
/>
<div id="services" data-section="services" className="pt-32 pb-20">
<FeatureCardMedia
animationType="blur-reveal"
textboxLayout="default"
useInvertedBackground={false}
title="Our Expert Digital Services"
description="Custom strategies designed to scale your brand and maximize engagement across all digital channels."
features={[
{ id: "s1", title: "SEO Strategy", description: "Get found by the right people at the right time.", tag: "Growth" },
{ id: "s2", title: "Performance Marketing", description: "High-ROI paid ads that convert clicks to customers.", tag: "Ads" },
{ id: "s3", title: "Creative Direction", description: "Visual storytelling that resonates with your audience.", tag: "Creative" },
{ id: "s4", title: "System Automation", description: "Scalable CRM and lead management workflows.", tag: "Tech" }
]}
/>
</div>
<div className="pt-32 pb-20">
<div className="text-center">
<h1 className="text-4xl font-bold">Our Expert Services</h1>
<p className="text-lg mt-4">Data-driven digital marketing and growth solutions tailored for your business needs.</p>
</div>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal logoText="Chandigi" columns={[{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }] }]} />
</div>
<FooterBaseReveal
logoText="Chandigi"
columns={[{ title: "Links", items: [{ label: "About", href: "/about" }, { label: "Services", href: "/services" }, { label: "Portfolio", href: "/portfolio" }, { label: "Contact", href: "/contact" }] }]}
/>
</ReactLenis>
</ThemeProvider>
);