'use client'; import Link from 'next/link'; import Image from 'next/image'; import { FEATURED_ROBOTS } from '@/data/robots'; const SOC_PATHS = { brain: 'M9 3a4 4 0 0 0-4 4v1a3 3 0 0 0 0 6v3a3 3 0 0 0 4 2 3 3 0 0 0 6 0 3 3 0 0 0 4-2v-3a3 3 0 0 0 0-6V7a4 4 0 0 0-4-4 3 3 0 0 0-6 0Z', shield: 'M12 2 4 5v7c0 5 3.5 9 8 10 4.5-1 8-5 8-10V5l-8-3Z', bolt: 'M13 2 3 14h7l-1 8 10-12h-7l1-8Z', globe: 'M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 2c2.2 0 4 3.6 4 8s-1.8 8-4 8-4-3.6-4-8 1.8-8 4-8ZM2 12c0-1 .5-2 1.5-3h17c1 1 1.5 2 1.5 3s-.5 2-1.5 3h-17c-1-1-1.5-2-1.5-3Z', }; export function BentoGrid() { return (
Premium robotics in Dubai
Flagship · Dubai

Unitree G1 humanoid — live in our Dubai showroom.

Configure persona, attire, and accessories. Then book a live demo.

View G1 Configure
Sales & demos

Fast quotes for UAE businesses.

Tell us your use case — we respond within one business day with availability and pricing.

End-to-end

Procurement, deployment, support.

Local team handles import, setup, training, and ongoing service across the UAE.

Exclusive UAE access

Unitree · Pudu — one Dubai team.

10+ industries

Hospitality, security, healthcare, retail.

Configurator

3D persona builder for the G1.

Start configuration
); } function Tile({ col, row, accent, icon, children, }: { col: string; row: string; accent: string; icon?: string; children: React.ReactNode; }) { const span = col.includes('7') ? 'bento-tile-7' : col.includes('5') ? 'bento-tile-5' : 'bento-tile-4'; return (
{icon && (
)} {children}
); }