From 26deab2da6a1a3075c1d5b6b18dcaaee41b6ba8a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 16:50:26 +0000 Subject: [PATCH] Update src/app/case-studies/page.tsx --- src/app/case-studies/page.tsx | 90 ++++++----------------------------- 1 file changed, 14 insertions(+), 76 deletions(-) diff --git a/src/app/case-studies/page.tsx b/src/app/case-studies/page.tsx index 6987c6e..e6b047f 100644 --- a/src/app/case-studies/page.tsx +++ b/src/app/case-studies/page.tsx @@ -8,7 +8,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis' import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import { CheckCircle, TrendingUp } from "lucide-react"; -export default function LandingPage() { +export default function CaseStudiesPage() { return ( @@ -59,26 +45,8 @@ export default function LandingPage() { title="Success Stories" description="Real world impact of our AI-driven strategies." blogs={[ - { - id: "b1", - category: "E-commerce", - title: "Automating Order Fulfillment", - excerpt: "How we helped a leading retailer save 20 hours weekly.", - imageSrc: "http://img.b2bpic.net/free-photo/3d-render-abstract-network-connections-with-shallow-depth-field_1048-14137.jpg", - authorName: "Jane Doe", - authorAvatar: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-3693.jpg", - date: "2023-11-01", - }, - { - id: "b2", - category: "Healthcare", - title: "Smart Scheduling Agents", - excerpt: "Reducing patient wait times through intelligent AI booking.", - imageSrc: "http://img.b2bpic.net/free-photo/3d-render-abstract-technology-with-flowing-cyber-particles_1048-15470.jpg", - authorName: "John Smith", - authorAvatar: "http://img.b2bpic.net/free-photo/closeup-confident-asian-man-with-arms-crossed_1262-884.jpg", - date: "2023-12-15", - }, + { id: "b1", category: "E-commerce", title: "Automating Order Fulfillment", excerpt: "How we helped a leading retailer save 20 hours weekly.", imageSrc: "http://img.b2bpic.net/free-photo/3d-render-abstract-network-connections-with-shallow-depth-field_1048-14137.jpg", authorName: "Jane Doe", authorAvatar: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-3693.jpg", date: "2023-11-01" }, + { id: "b2", category: "Healthcare", title: "Smart Scheduling Agents", excerpt: "Reducing patient wait times through intelligent AI booking.", imageSrc: "http://img.b2bpic.net/free-photo/3d-render-abstract-technology-with-flowing-cyber-particles_1048-15470.jpg", authorName: "John Smith", authorAvatar: "http://img.b2bpic.net/free-photo/closeup-confident-asian-man-with-arms-crossed_1262-884.jpg", date: "2023-12-15" }, ]} /> @@ -91,16 +59,8 @@ export default function LandingPage() { title="Results Delivered" description="See how we scale success." features={[ - { - icon: CheckCircle, - title: "Process Optimization", - description: "Streamlining manual tasks.", - }, - { - icon: TrendingUp, - title: "Revenue Growth", - description: "Driving business expansion.", - }, + { icon: CheckCircle, title: "Process Optimization", description: "Streamlining manual tasks." }, + { icon: TrendingUp, title: "Revenue Growth", description: "Driving business expansion." }, ]} /> @@ -108,30 +68,8 @@ export default function LandingPage() {