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 | UAE Access via YS Lootah Robotics', description: 'Selected Unitree and Pudu Robotics solutions available in the UAE through YS Lootah Robotics. Humanoid, quadruped, service, delivery, and cleaning robots.', }; const ORDER: RobotBrand[] = ['unitree', 'pudu']; export default function BrandsPage() { return ( <>
UAE Access ยท Dubai

Selected Unitree and Pudu solutions in the UAE.

YS Lootah Robotics holds 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 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) => ( ))}
); })}
); }