import type { Metadata } from 'next'; import { Navbar } from '@/components/Navbar'; import { FooterAndContact } from '@/components/FooterAndContact'; import { BRANDS, ROBOTS, type RobotBrand } from '@/data/robots'; import { RobotProductCard } from '@/components/robotics/RobotProductCard'; import { MotionSection } from '@/components/ui/MotionSection'; import { DemoCTA } from '@/components/robotics/DemoCTA'; export const metadata: Metadata = { title: 'Robotics Brands — Unitree & Pudu | Exclusive UAE Access via YS Lootah Robotics', description: 'Selected Unitree and Pudu Robotics solutions — available exclusively in the UAE through YS Lootah Robotics. Humanoid, quadruped, service, delivery, and cleaning robots.', }; const ORDER: RobotBrand[] = ['unitree', 'pudu']; export default function BrandsPage() { return ( <>
Exclusive UAE Access · Dubai

Selected Unitree and Pudu solutions — exclusively in the UAE.

YS Lootah Robotics holds exclusive UAE sales rights for selected Unitree and Pudu Robotics solutions — with on-the-ground sales, demo, and deployment support across Dubai and the UAE.

Brand names and product trademarks are property of their respective owners. Available exclusively in the UAE through YS Lootah Robotics.

{ORDER.map((id) => { const brand = BRANDS[id]; const robots = ROBOTS.filter((r) => r.brand === id); return (

{brand.name.split(' ')[0]} {brand.name.split(' ').slice(1).join(' ')}

{robots.length} model{robots.length === 1 ? '' : 's'}

{brand.description}

{robots.map((r) => ( ))}
); })}
); }