Update src/app/case-studies/page.tsx

This commit is contained in:
2026-04-22 16:50:26 +00:00
parent c5f60ba5c2
commit 26deab2da6

View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="icon-arrow"
@@ -26,28 +26,14 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "Case Studies",
id: "/case-studies",
},
{
name: "About",
id: "/about",
},
{
name: "Book a Call",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Case Studies", id: "/case-studies" },
{ name: "About", id: "/about" },
{ name: "Book a Call", id: "/contact" },
]}
brandName="AI Agency"
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
@@ -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" },
]}
/>
</div>
@@ -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." },
]}
/>
</div>
@@ -108,30 +68,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Services",
href: "/services",
},
{
label: "Case Studies",
href: "/case-studies",
},
],
},
{
items: [
{
label: "Contact",
href: "/contact",
},
{
label: "About",
href: "/about",
},
],
},
{ items: [{ label: "Services", href: "/services" }, { label: "Case Studies", href: "/case-studies" }] },
{ items: [{ label: "Contact", href: "/contact" }, { label: "About", href: "/about" }] },
]}
logoText="AI Agency"
/>
@@ -139,4 +77,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}