'use client'; import Image from 'next/image'; import Link from 'next/link'; import { ArrowRight, BadgeCheck, Cpu, MapPin, Sparkles, Bot, Truck } from 'lucide-react'; import { ContainerScroll } from '@/components/ui/container-scroll-animation'; const SHOWROOM_ROBOTS = [ { name: 'Unitree G1', slug: 'unitree-g1', image: '/images/robots/unitree-g1.png', category: 'Humanoid', accent: '#DEE0F0', }, { name: 'Unitree Go2', slug: 'unitree-go2', image: '/images/robots/unitree-go2.png', category: 'Quadruped', accent: '#BFC3E2', }, { name: 'Pudu BellaBot', slug: 'pudu-bellabot', image: '/images/robots/pudu-bellabot.svg', category: 'Delivery', accent: '#8891C7', }, ]; const TABS = [ { label: 'All', icon: Sparkles, active: true }, { label: 'Unitree', icon: Bot }, { label: 'Pudu', icon: Truck }, { label: 'Humanoid', icon: BadgeCheck }, { label: 'Quadruped', icon: Cpu }, ]; export function RoboticsScrollShowcase() { return (
Exclusive UAE Robotics Showroom

Advanced robotics. Exclusive UAE access. Built for Dubai's next generation of automation.

Explore selected Unitree and Pudu Robotics solutions through an immersive showroom experience built for UAE businesses, venues, and innovators.

} >
); } function ConsoleInterior() { return (
{/* left sidebar category rail */} {/* main display */}
{/* top breadcrumb */}
Robots · Exclusive UAE Portfolio 11 Models · 2 Brands · Dubai
{/* product grid */}
{SHOWROOM_ROBOTS.map((r) => (
{`${r.name} {r.category}
Available in UAE
{r.name}
))}
{/* CTA strip */}
Book demo Configure solution Request UAE quotation
Dubai · UAE
); }