'use client'; import { motion } from 'framer-motion'; import Image from 'next/image'; import Link from 'next/link'; import Building2 from 'lucide-react/dist/esm/icons/building-2'; import Utensils from 'lucide-react/dist/esm/icons/utensils'; import Hotel from 'lucide-react/dist/esm/icons/hotel'; import ShoppingBag from 'lucide-react/dist/esm/icons/shopping-bag'; import HeartPulse from 'lucide-react/dist/esm/icons/heart-pulse'; import GraduationCap from 'lucide-react/dist/esm/icons/graduation-cap'; import Shield from 'lucide-react/dist/esm/icons/shield'; import Warehouse from 'lucide-react/dist/esm/icons/warehouse'; import Sparkles from 'lucide-react/dist/esm/icons/sparkles'; import Landmark from 'lucide-react/dist/esm/icons/landmark'; import ArrowRight from 'lucide-react/dist/esm/icons/arrow-right'; import type { LucideIcon } from 'lucide-react'; import { INDUSTRIES, type Industry } from '@/data/industries'; const ease = [0.16, 1, 0.3, 1] as const; const ICON_MAP: Record = { building: Building2, utensils: Utensils, hotel: Hotel, 'shopping-bag': ShoppingBag, 'heart-pulse': HeartPulse, 'graduation-cap': GraduationCap, shield: Shield, warehouse: Warehouse, sparkles: Sparkles, landmark: Landmark, }; const SHORT_COPY: Record = { hospitality: 'Service and delivery robots for hotels, lounges, and guest venues.', restaurants: 'Delivery robots that support faster table service and reduce staff walking time.', hotels: 'Autonomous delivery and concierge-style robotics for premium guest experiences.', malls: 'Cleaning, service, and activation robots for high-traffic retail environments.', healthcare: 'Autonomous transport robots for supplies, meals, and routine internal deliveries.', education: 'Humanoid and quadruped robotics for STEM labs and innovation programs.', security: 'Quadruped robots for patrol, inspection, and perimeter monitoring.', warehousing: 'Inspection and delivery robots for repetitive facility operations.', events: 'Humanoid and service robots that elevate brand activations and live events.', government: 'Smart-city robotics for public spaces, civic programs, and innovation hubs.', }; const STATS = [ { value: '8+', label: 'Sectors served' }, { value: '4', label: 'Robot families' }, { value: 'UAE-wide', label: 'Deployment' }, { value: 'Dubai', label: 'Local support' }, ] as const; export function IndustryUseCases({ limit }: { limit?: number }) { const list = limit ? INDUSTRIES.slice(0, limit) : INDUSTRIES; return (
{/* STATS — compact dark chips */} {STATS.map((s) => (
  • {s.value} {s.label}
  • ))}
    {/* GRID */}
    {list.map((industry, i) => ( ))}
    ); } function IndustryCard({ industry, delay }: { industry: Industry; delay: number }) { const Icon = ICON_MAP[industry.icon]; const blurb = SHORT_COPY[industry.id] ?? industry.solution; return (
    {industry.imageAlt}

    {industry.name}

    {blurb}

    Learn more
    ); }