diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 7330dc8..100c73e 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -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 ( @@ -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%" }, ]} /> @@ -104,30 +68,8 @@ export default function LandingPage() {