From 6aa0871ad40886d1c1909c5b6d91d767c4e852cf Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 20:22:17 +0000 Subject: [PATCH] Update src/app/services/page.tsx --- src/app/services/page.tsx | 202 +++++++++++++------------------------- 1 file changed, 66 insertions(+), 136 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index c278d86..95044a3 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -1,161 +1,91 @@ -"use client"; +'use client'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour'; -import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import TextAnimation from '@/components/text/TextAnimation'; -import { LayoutDashboard, Rocket, Palette } from 'lucide-react'; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import TextNumberCount from '@/components/text/TextNumberCount'; +import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; +import { Target, Lightbulb, TrendingUp, Handshake } from 'lucide-react'; export default function ServicesPage() { - const navbarNavItems = [ - { name: 'Home', id: '/' }, - { name: 'Services', id: '/services' } + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Portfolio", id: "/portfolio" }, + { name: "Case Studies", id: "/case-studies" }, + { name: "Contact", id: "/contact" } ]; - const footerColumns = [ + + const features = [ { - title: 'Product', - items: [ - { label: 'Features', href: '#' }, - { label: 'Pricing', href: '/pricing' } + title: 'Business Strategy', + description: 'Crafting clear strategies for growth and market leadership through in-depth analysis and visionary planning.', + icon: Target, + mediaItems: [ + { imageSrc: 'https://placehold.co/400x300/png?text=Strategy+Meeting', imageAlt: 'Strategy meeting in progress' }, + { imageSrc: 'https://placehold.co/400x300/png?text=Data+Analysis', imageAlt: 'Data analysis charts' } ] }, { - title: 'Company', - items: [ - { label: 'About', href: '/about' }, - { label: 'Contact', href: '/contact' } + title: 'Innovative Solutions', + description: 'Developing cutting-edge solutions that leverage the latest technology to solve complex business challenges.', + icon: Lightbulb, + mediaItems: [ + { imageSrc: 'https://placehold.co/400x300/png?text=Innovation+Concept', imageAlt: 'Lightbulb representing innovation' }, + { imageSrc: 'https://placehold.co/400x300/png?text=Software+Development', imageAlt: 'Code on a computer screen' } + ] + }, + { + title: 'Growth Marketing', + description: 'Implementing data-driven marketing campaigns designed to maximize reach, engagement, and conversion rates.', + icon: TrendingUp, + mediaItems: [ + { imageSrc: 'https://placehold.co/400x300/png?text=Marketing+Analytics', imageAlt: 'Marketing analytics dashboard' }, + { imageSrc: 'https://placehold.co/400x300/png?text=Digital+Campaign', imageAlt: 'Digital marketing campaign on mobile' } + ] + }, + { + title: 'Client Partnership', + description: 'Building strong, collaborative relationships with our clients, ensuring shared success and long-term value.', + icon: Handshake, + mediaItems: [ + { imageSrc: 'https://placehold.co/400x300/png?text=Client+Meeting', imageAlt: 'Client meeting discussion' }, + { imageSrc: 'https://placehold.co/400x300/png?text=Team+Collaboration', imageAlt: 'Team collaborating on project' } ] } ]; return ( - -
-
- - Our Services - + +
+ +
+
-
- -
-
- -
- ); } \ No newline at end of file