diff --git a/src/app/robots/page.tsx b/src/app/robots/page.tsx
index ff6e8ab..e0410fe 100644
--- a/src/app/robots/page.tsx
+++ b/src/app/robots/page.tsx
@@ -2,6 +2,7 @@ import type { Metadata } from 'next';
import { Navbar } from '@/components/Navbar';
import { FooterAndContact } from '@/components/FooterAndContact';
import { CatalogClient } from './CatalogClient';
+import { RoboticsSplineShowcase } from '@/components/sections/robotics-spline-showcase';
import { ROBOTS } from '@/data/robots';
export const metadata: Metadata = {
@@ -14,17 +15,30 @@ export default function RobotsPage() {
return (
<>
-
-
+
+
+
+
+
+
- Robot Catalog · Dubai · UAE
-
+ Catalog · Filter & Browse
+
- Robots ready to deploy across the UAE.
+ {ROBOTS.length}+ models across the UAE portfolio.
-
+
- Browse {ROBOTS.length}+ models across our portfolio. Filter by brand or category, then request a price or book a live demo at our Dubai showroom.
+ Filter by brand or category, then request a UAE quotation or book a live demo at our Dubai showroom.
diff --git a/src/components/robotics/CompanyStory.tsx b/src/components/robotics/CompanyStory.tsx
index 6b66873..6199d4c 100644
--- a/src/components/robotics/CompanyStory.tsx
+++ b/src/components/robotics/CompanyStory.tsx
@@ -1,61 +1,394 @@
'use client';
-const PILLARS = [
- { title: 'Artificial intelligence', body: 'AI applications tailored for UAE government and private sector clients.' },
- { title: 'Robotics', body: 'Humanoid, quadruped, service, and delivery robotics deployed across Dubai and the UAE.' },
- { title: 'Digital transformation', body: 'Automation systems and smart projects that modernize operations end to end.' },
- { title: 'Training & enablement', body: 'Coding and robotics training programs that prepare the next generation of talent.' },
+import { Brain, Bot, Workflow, GraduationCap, Building2, BadgeCheck } from 'lucide-react';
+import type { LucideIcon } from 'lucide-react';
+
+type Pillar = {
+ num: string;
+ title: string;
+ body: string;
+ Icon: LucideIcon;
+ accent: string;
+};
+
+const PILLARS: Pillar[] = [
+ {
+ num: '01',
+ title: 'Artificial Intelligence',
+ body: 'AI applications tailored for UAE government and private sector.',
+ Icon: Brain,
+ accent: '#DEE0F0',
+ },
+ {
+ num: '02',
+ title: 'Robotics Deployment',
+ body: 'Humanoid, quadruped, service, and delivery robots across the UAE.',
+ Icon: Bot,
+ accent: '#3a55c4',
+ },
+ {
+ num: '03',
+ title: 'Digital Transformation',
+ body: 'Automation systems and smart projects that modernize operations.',
+ Icon: Workflow,
+ accent: '#BFC3E2',
+ },
+ {
+ num: '04',
+ title: 'Training & Enablement',
+ body: 'Coding and robotics programs preparing the next generation of UAE talent.',
+ Icon: GraduationCap,
+ accent: '#8891C7',
+ },
];
export function CompanyStory() {
return (
-
- About YS Lootah Robotics
-
-
- A trusted UAE technology and robotics partner.
-
-
-
- YS Lootah Robotics is part of the Yousuf Saeed Lootah Investment Group. We help organizations innovate, automate, and deploy intelligent robotic solutions across artificial intelligence, robotics, digital transformation, automation systems, and smart projects — for government and private sector clients alike.
-
-
- Beyond hardware, we also run coding and robotics training programs that prepare the UAE's next generation of talent for an automated future.
-
-
- 0{i + 1}
+
+ A trusted UAE technology and robotics partner.
-
{p.title}
-
{p.body}
+
+
+
+ YS Lootah Robotics is part of the{' '}
+ Yousuf Saeed Lootah Investment Group.
+ We deliver AI, robotics, digital transformation, smart projects, and training programs to government and private sector clients across the UAE.
+
+
+ {/* Group credibility row */}
+
+
+
- ))}
+
+ {/* Pull-quote card */}
+
+
+
+ In Tech We Innovate.
+
+
+ In Trust We Lead.
+
+
- The UAE's dedicated destination for selected Unitree and Pudu Robotics solutions.
+ The UAE's dedicated destination for Unitree and Pudu Robotics.
-
- YS Lootah Robotics holds exclusive sales rights in the UAE for selected Unitree and Pudu Robotics solutions. We deliver advanced robots to businesses, venues, and innovators across Dubai and the UAE — from inquiry to live deployment.
+
+ Selected solutions delivered to UAE businesses, venues, and innovators — from inquiry to live deployment, fully supported in Dubai.
-
+
{[
- 'Available exclusively in the UAE through YS Lootah Robotics.',
- 'Local Dubai team handles sales, demos, configuration, and deployment.',
- 'Curated portfolio across humanoid, quadruped, service, and delivery robots.',
+ 'Exclusive UAE sales territory.',
+ 'Local Dubai sales, demo, and deployment team.',
+ 'Humanoid, quadruped, service, delivery, cleaning robots.',
'End-to-end procurement, training, and ongoing support.',
].map((b) => (
-
- YS Lootah Robotics is the exclusive UAE sales destination for selected Unitree and Pudu Robotics solutions — helping businesses explore, configure, book demos, and deploy advanced robots across Dubai and the UAE.
+
+ Browse selected Unitree and Pudu Robotics solutions available exclusively in the UAE through YS Lootah Robotics — humanoid, quadruped, service, delivery, and cleaning robots ready for Dubai businesses.
-
+
- Explore robots
-
+ Request UAE quotation
+
+
+
+ Book a demo
+
-
Configure your solution
-
+
- {/* Replacement note (visible only in dev) */}
Interactive 3D scene — placeholder Spline reference robot for development. Replace
with approved YS Lootah Robotics custom Spline scene when available.
@@ -112,6 +326,26 @@ export function RoboticsSplineShowcase() {