From ded73757cea199b7fcccc8cfe6ad884fec3a3df9 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 00:18:31 +0000 Subject: [PATCH] Add src/app/case-studies/page.tsx --- src/app/case-studies/page.tsx | 139 ++++++++++++++++++++++++++++++++++ 1 file changed, 139 insertions(+) create mode 100644 src/app/case-studies/page.tsx diff --git a/src/app/case-studies/page.tsx b/src/app/case-studies/page.tsx new file mode 100644 index 0000000..81f5a2b --- /dev/null +++ b/src/app/case-studies/page.tsx @@ -0,0 +1,139 @@ +'use client'; + +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Sparkles, Twitter, Linkedin, Globe } from 'lucide-react'; + +const CaseStudiesPage = () => { + const navItems = [ + { name: 'Home', id: '/' }, + { name: 'About', id: '/about' }, + { name: 'Blog', id: '/blog' }, + { name: 'Case Studies', id: '/case-studies' }, + { name: 'FAQ', id: '/faq' }, + { name: 'Services', id: '/#services' }, + { name: 'Pricing', id: '/#pricing' }, + ]; + + const caseStudies = [ + { + id: '1', + title: 'E-Commerce Transformation', + description: 'Increased online sales by 300% through complete website redesign and digital marketing strategy for a leading retail brand.', + imageSrc: 'https://images.unsplash.com/photo-1460925895917-adf4198c868f?w=800&h=600&fit=crop', + imageAlt: 'E-commerce transformation case study' + }, + { + id: '2', + title: 'SaaS Growth Campaign', + description: 'Helped a B2B SaaS company acquire 500+ enterprise clients through targeted advertising and content marketing.', + imageSrc: 'https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop', + imageAlt: 'SaaS growth case study' + }, + { + id: '3', + title: 'Brand Relaunch Success', + description: 'Complete brand identity overhaul resulting in 250% increase in brand awareness and customer engagement.', + imageSrc: 'https://images.unsplash.com/photo-1561070791-2526d30994b5?w=800&h=600&fit=crop', + imageAlt: 'Brand relaunch case study' + }, + { + id: '4', + title: 'Mobile App Launch', + description: 'Developed and launched a mobile app that reached 100k downloads in the first month with exceptional user ratings.', + imageSrc: 'https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=800&h=600&fit=crop', + imageAlt: 'Mobile app launch case study' + }, + { + id: '5', + title: 'Startup Scaling', + description: 'Scaled a startup from 0 to $10M ARR in 2 years through strategic digital solutions and market positioning.', + imageSrc: 'https://images.unsplash.com/photo-1611532736540-6dabab387e13?w=800&h=600&fit=crop', + imageAlt: 'Startup scaling case study' + }, + { + id: '6', + title: 'Enterprise Integration', + description: 'Successfully integrated AI solutions across all customer touchpoints for a Fortune 500 company.', + imageSrc: 'https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop', + imageAlt: 'Enterprise integration case study' + } + ]; + + return ( + + + +
+
+

Case Studies

+

Real results from real clients. See how we've transformed businesses across industries.

+
+
+ +
+ +
+ +
+ +
+ + +
+ ); +}; + +export default CaseStudiesPage;