import type { Metadata } from 'next'; import { Navbar } from '@/components/Navbar'; import { FooterAndContact } from '@/components/FooterAndContact'; import { InquiryForm } from '@/components/robotics/InquiryForm'; export const metadata: Metadata = { title: 'Contact YS Lootah Robotics Dubai Robotics Sales & Demo Inquiries', description: 'Dubai robotics sales, support, and demo inquiries. Contact YS Lootah Robotics, the UAE destination for selected Unitree and Pudu Robotics solutions, by phone, email, or WhatsApp.', }; export default function ContactPage() { return ( <>
Contact · Dubai · UAE

Talk to our Dubai robotics team.

Tell us about your venue, timeline, and use case. We will recommend a robot, share availability, and book a live demo at our Dubai showroom.

Inquiry form

Send us a message

); } function ContactRow({ label, value, href, external = false }: { label: string; value: string; href: string; external?: boolean }) { return ( {label} {value} ); }