Update src/app/services/page.tsx

This commit is contained in:
2026-05-07 12:42:53 +00:00
parent ee84d2a90e
commit 66b4ee480e

View File

@@ -2,39 +2,34 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FeatureBento from '@/components/sections/feature/FeatureBento';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { LayoutGrid, BarChart3, Search, Megaphone } from "lucide-react";
export default function ServicesPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="icon-arrow" defaultTextAnimation="reveal-blur" borderRadius="rounded" contentWidth="medium" sizing="medium" background="none" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Contact", id: "/contact" }
]}
brandName="Chandigi"
button={{ text: "Get Growth Plan", href: "/contact" }}
/>
<div className="pt-32 pb-20">
<FeatureBento
title="Our Expert Services"
description="Data-driven digital marketing and growth solutions tailored for your business needs."
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
features={[
{ title: "Web Design", description: "Modern, high-performance web experiences.", bentoComponent: "reveal-icon", icon: LayoutGrid },
{ title: "SEO Strategy", description: "Drive organic traffic and rankings.", bentoComponent: "reveal-icon", icon: Search },
{ title: "Paid Ads", description: "Precision targeting for high ROI.", bentoComponent: "reveal-icon", icon: Megaphone },
{ title: "Performance Analytics", description: "Insights that inform scaling.", bentoComponent: "reveal-icon", icon: BarChart3 }
]}
/>
</div>
<FooterBaseReveal logoText="Chandigi" columns={[]} />
<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>
</ReactLenis>
</ThemeProvider>
);