Update src/app/services/page.tsx

This commit is contained in:
2026-05-07 12:45:58 +00:00
parent 10ec8f7cc8
commit 8d8026f614

View File

@@ -8,19 +8,20 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
export default function ServicesPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Contact", id: "/contact" },
]}
brandName="Chandigi"
button={{ text: "Get Growth Plan", href: "/contact" }}
/>
<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" },
]}
brandName="Chandigi"
/>
</div>
<div id="services" data-section="services" className="pt-32 pb-20">
<FeatureCardMedia
animationType="blur-reveal"
@@ -38,6 +39,8 @@ export default function ServicesPage() {
</div>
<FooterBaseReveal
logoText="Chandigi"
leftLink={{ text: "Privacy", href: "/privacy" }}
rightLink={{ text: "Contact", href: "/contact" }}
columns={[{ title: "Links", items: [{ label: "About", href: "/about" }, { label: "Services", href: "/services" }, { label: "Portfolio", href: "/portfolio" }, { label: "Contact", href: "/contact" }] }]}
/>
</ReactLenis>