Update src/app/services/page.tsx

This commit is contained in:
2026-04-22 16:50:27 +00:00
parent daa7467414
commit fafbdd37e5

View File

@@ -8,7 +8,7 @@ import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import { Clock, DollarSign } from "lucide-react";
export default function LandingPage() {
export default function ServicesPage() {
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>
@@ -56,21 +42,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
features={[
{
title: "n8n Workflow Automation",
description: "Streamline operations with custom integration flows.",
imageSrc: "http://img.b2bpic.net/free-photo/mouse-close_1160-365.jpg",
},
{
title: "AI Agents Development",
description: "Autonomous agents that handle complex business tasks.",
imageSrc: "http://img.b2bpic.net/free-photo/robot-defending-against-virus-attack_1048-12079.jpg",
},
{
title: "AI Business Automations",
description: "End-to-end automation strategies for scalability.",
imageSrc: "http://img.b2bpic.net/free-photo/3d-render-network-communications-background-with-flowing-digital-particles_1048-15686.jpg",
},
{ title: "n8n Workflow Automation", description: "Streamline operations with custom integration flows.", imageSrc: "http://img.b2bpic.net/free-photo/mouse-close_1160-365.jpg" },
{ title: "AI Agents Development", description: "Autonomous agents that handle complex business tasks.", imageSrc: "http://img.b2bpic.net/free-photo/robot-defending-against-virus-attack_1048-12079.jpg" },
{ title: "AI Business Automations", description: "End-to-end automation strategies for scalability.", imageSrc: "http://img.b2bpic.net/free-photo/3d-render-network-communications-background-with-flowing-digital-particles_1048-15686.jpg" },
]}
title="Our AI Services"
description="Comprehensive automation solutions to scale your operations."
@@ -85,18 +59,8 @@ export default function LandingPage() {
title="Efficiency Metrics"
description="Quantifiable gains delivered through our automation frameworks."
metrics={[
{
id: "m1",
icon: Clock,
title: "Average Time Savings",
value: "40%",
},
{
id: "m2",
icon: DollarSign,
title: "Operational Cost Reduction",
value: "25%",
},
{ id: "m1", icon: Clock, title: "Average Time Savings", value: "40%" },
{ id: "m2", icon: DollarSign, title: "Operational Cost Reduction", value: "25%" },
]}
/>
</div>
@@ -104,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"
/>
@@ -135,4 +77,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}