diff --git a/src/app/industries/[slug]/page.tsx b/src/app/industries/[slug]/page.tsx new file mode 100644 index 0000000..b0e2c5c --- /dev/null +++ b/src/app/industries/[slug]/page.tsx @@ -0,0 +1,674 @@ +import type { Metadata } from 'next'; +import Link from 'next/link'; +import { notFound } from 'next/navigation'; +import { + Bot, + Truck, + Sparkles, + CircleUserRound, + Cog, + Compass, + Cpu, + ScanLine, + Search, + Layers, + Bell, + UtensilsCrossed, + ChevronRight, + ArrowRight, +} from 'lucide-react'; +import { Navbar } from '@/components/Navbar'; +import { FooterAndContact } from '@/components/FooterAndContact'; +import { MotionSection } from '@/components/ui/MotionSection'; +import { CTAButton } from '@/components/ui/CTAButton'; +import { INDUSTRIES, getIndustryBySlug } from '@/data/industries'; +import { INDUSTRY_PAGES, type IndustrySolution } from '@/data/industry-pages'; + +type Params = { slug: string }; + +const ICONS: Record> = { + service: Bell, + delivery: Truck, + cleaning: Sparkles, + humanoid: CircleUserRound, + quadruped: Bot, + sensor: ScanLine, + inspect: Search, + platform: Cpu, + guide: Compass, + queue: Layers, + host: CircleUserRound, + tray: UtensilsCrossed, +}; + +export function generateStaticParams() { + return INDUSTRIES.map((i) => ({ slug: i.slug })); +} + +export async function generateMetadata({ params }: { params: Promise }): Promise { + const { slug } = await params; + const industry = getIndustryBySlug(slug); + if (!industry) return {}; + const content = INDUSTRY_PAGES[industry.id]; + if (!content) return {}; + const url = `/industries/${industry.slug}/`; + return { + title: content.seoTitle, + description: content.seoDescription, + alternates: { canonical: url }, + openGraph: { + title: content.seoTitle, + description: content.seoDescription, + url, + type: 'website', + }, + twitter: { + card: 'summary_large_image', + title: content.seoTitle, + description: content.seoDescription, + }, + }; +} + +export default async function IndustryDetailPage({ params }: { params: Promise }) { + const { slug } = await params; + const industry = getIndustryBySlug(slug); + if (!industry) notFound(); + const content = INDUSTRY_PAGES[industry.id]; + if (!content) notFound(); + + const accent = industry.accent; + + return ( + <> + + +
+
+ {/* BREADCRUMBS */} + + + {/* HERO */} + +
+
+
+
+
+ {industry.name} +

+ {content.heroTitle} +

+

{content.heroSubtitle}

+
+ + Book a Demo + + + Talk to Our Team + +
+
+ +
+
+
+ + {/* PROBLEM */} + +
+
+ The challenge +

Where today’s operations break down.

+
+
    + {content.problemPoints.map((p, i) => ( +
  • + {String(i + 1).padStart(2, '0')} +

    {p}

    +
  • + ))} +
+
+
+ + {/* SOLUTIONS */} + +
+
+ Recommended robot solutions +

The right robot families for {industry.name.toLowerCase()}.

+
+
+ {content.solutions.map((s, i) => { + const Icon = ICONS[s.iconKey] ?? Cog; + return ( +
+ + + +

{s.title}

+

{s.body}

+
+ ); + })} +
+
+
+ + {/* USE CASES */} + +
+
+ Use cases +

Where these robots earn their keep.

+
+
    + {content.useCases.map((u, i) => ( +
  • + + {u} +
  • + ))} +
+
+
+ + {/* BENEFITS */} + +
+
+ Business benefits +

What this changes for your operation.

+
+
+ {content.benefits.map((b, i) => ( +
+

{b.title}

+

{b.body}

+
+ ))} +
+
+
+ + {/* SUGGESTED ROBOTS */} + +
+
+ Suggested robots +

Brands and families we deploy for this sector.

+
+
+ {content.suggestedRobots.map((r, i) => ( +
+ {r.brand} +

{r.family}

+

{r.body}

+ + Browse robots + +
+ ))} +
+
+
+ + {/* CTA */} + +
+
+
+
+ Next step +

Find the right robot for your venue.

+

+ Tell us about your space, workflow, and goals. Our Dubai team will recommend the best-fit robotics solution and arrange a live demo or quotation. +

+
+
+ + Book a Live Demo + + + Request UAE Quotation + + + WhatsApp Us + +
+
+
+
+
+
+ + + + {/* eslint-disable react/no-unknown-property */} + + + ); +} diff --git a/src/components/robotics/IndustryUseCases.tsx b/src/components/robotics/IndustryUseCases.tsx index c2a8b13..15ed244 100644 --- a/src/components/robotics/IndustryUseCases.tsx +++ b/src/components/robotics/IndustryUseCases.tsx @@ -96,8 +96,9 @@ export function IndustryUseCases({ limit }: { limit?: number }) { margin: 0; padding: 0; display: grid; - grid-template-columns: repeat(2, minmax(0, 1fr)); + grid-template-columns: minmax(0, 1fr); gap: 0.55rem; + margin-bottom: clamp(0.5rem, 1.5vw, 1rem); } .iu-stat { position: relative; @@ -167,10 +168,13 @@ export function IndustryUseCases({ limit }: { limit?: number }) { gap: 1rem; } - @media (min-width: 760px) { - .iu-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.7rem; } + @media (min-width: 520px) { + .iu-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.6rem; } .iu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; } } + @media (min-width: 820px) { + .iu-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.7rem; } + } @media (min-width: 1000px) { .iu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; } } diff --git a/src/data/industries.ts b/src/data/industries.ts index 318fb13..302c2ce 100644 --- a/src/data/industries.ts +++ b/src/data/industries.ts @@ -26,7 +26,7 @@ export const INDUSTRIES: Industry[] = [ }, { id: 'restaurants', - slug: 'restaurants', + slug: 'restaurants-cafes', name: 'Restaurants & Cafés', problem: 'Peak-hour service quality drops as servers shuttle trays across the floor.', solution: 'Delivery robots like BellaBot and KettyBot move food fast and reliably.', @@ -37,7 +37,7 @@ export const INDUSTRIES: Industry[] = [ }, { id: 'hotels', - slug: 'hotels', + slug: 'hotels-resorts', name: 'Hotels & Resorts', problem: 'Room service and back-of-house logistics burn operational hours.', solution: 'Multi-floor delivery robots and humanoid concierge experiences.', @@ -81,7 +81,7 @@ export const INDUSTRIES: Industry[] = [ }, { id: 'security', - slug: 'security', + slug: 'security-surveillance', name: 'Security & Surveillance', problem: 'Manual patrols are repetitive, costly, and miss anomalies after hours.', solution: 'Quadruped robots like Unitree Go2 and B2 patrol autonomously.', @@ -92,7 +92,7 @@ export const INDUSTRIES: Industry[] = [ }, { id: 'warehouses', - slug: 'warehouses', + slug: 'warehouses-logistics', name: 'Warehouses & Logistics', problem: 'Inventory transport, picking, and inspection take human hours that scale poorly.', solution: 'Quadruped inspection robots and autonomous delivery platforms.', diff --git a/src/data/industry-pages.ts b/src/data/industry-pages.ts new file mode 100644 index 0000000..452cc64 --- /dev/null +++ b/src/data/industry-pages.ts @@ -0,0 +1,342 @@ +export type IndustrySolution = { + title: string; + body: string; + iconKey: + | 'service' + | 'delivery' + | 'cleaning' + | 'humanoid' + | 'quadruped' + | 'sensor' + | 'inspect' + | 'platform' + | 'guide' + | 'queue' + | 'host' + | 'tray'; +}; + +export type SuggestedRobot = { + brand: 'Pudu' | 'Unitree'; + family: string; + body: string; +}; + +export type IndustryPageContent = { + heroTitle: string; + heroSubtitle: string; + problemPoints: string[]; + solutions: IndustrySolution[]; + useCases: string[]; + benefits: { title: string; body: string }[]; + suggestedRobots: SuggestedRobot[]; + seoTitle: string; + seoDescription: string; +}; + +export const INDUSTRY_PAGES: Record = { + hospitality: { + heroTitle: 'Robotics for premium guest experiences.', + heroSubtitle: + 'Deploy service, delivery, cleaning, and concierge robots across UAE hospitality venues — from lounges and clubs to high-end hotels.', + problemPoints: [ + 'Guest service teams are stretched thin during peak hours and events.', + 'Repetitive runs between back-of-house and guest areas burn staff energy.', + 'Guest expectations for fast, polished moments keep rising.', + 'Maintaining service consistency across shifts is difficult and costly.', + ], + solutions: [ + { title: 'Service robots', body: 'Greet guests, deliver items, and assist between zones with a polished, branded persona.', iconKey: 'service' }, + { title: 'Delivery robots', body: 'Move trays, room amenities, and supplies between floors and back-of-house efficiently.', iconKey: 'delivery' }, + { title: 'Cleaning robots', body: 'Maintain lobbies, corridors, and back areas during overnight or quiet windows.', iconKey: 'cleaning' }, + { title: 'Humanoid concierge', body: 'Signature welcome and activation moments that anchor the venue brand.', iconKey: 'humanoid' }, + ], + useCases: [ + 'Lobby greeting and guest direction', + 'In-house item delivery between zones', + 'Overnight floor cleaning and disinfection', + 'VIP activations and brand moments', + ], + benefits: [ + { title: 'Consistent service', body: 'Service quality stays steady across shifts and peak nights.' }, + { title: 'Lower repetitive load', body: 'Staff spend less time on transport and more on guest care.' }, + { title: 'Premium positioning', body: 'Branded robotic moments reinforce a high-end identity.' }, + { title: 'Always-on coverage', body: 'Routine work continues smoothly during off-hours.' }, + ], + suggestedRobots: [ + { brand: 'Pudu', family: 'Service & delivery lineup', body: 'BellaBot, KettyBot, and FlashBot family for service-floor and multi-zone delivery.' }, + { brand: 'Pudu', family: 'Cleaning lineup', body: 'Commercial cleaning platforms for lobbies, corridors, and back-of-house.' }, + { brand: 'Unitree', family: 'Humanoid platforms', body: 'G1 and H1 humanoids for concierge moments and brand activations.' }, + ], + seoTitle: 'Hospitality Robots in UAE | YS Lootah Robotics', + seoDescription: + 'Service, delivery, cleaning, and concierge robots for hotels, lounges, and hospitality venues across the UAE. Exclusive UAE access to Pudu and Unitree.', + }, + + restaurants: { + heroTitle: 'Faster, smoother restaurant service.', + heroSubtitle: + 'Delivery and greeting robots that support peak service, reduce walking distance, and elevate the dining experience in UAE F&B venues.', + problemPoints: [ + 'Servers spend most of the shift walking trays back and forth.', + 'Peak-hour quality drops as floor coverage thins.', + 'High turnover impacts service consistency across the week.', + 'Standout moments are hard to engineer in a busy dining room.', + ], + solutions: [ + { title: 'Food delivery robots', body: 'Bring dishes from kitchen to table reliably during full service.', iconKey: 'delivery' }, + { title: 'Tray-runner robots', body: 'Multi-tray runs designed for high-traffic floors and quick turns.', iconKey: 'tray' }, + { title: 'Greeting / host robots', body: 'Welcome guests, manage queues, and walk parties to their tables.', iconKey: 'host' }, + { title: 'Promo and queue robots', body: 'Engage waiting guests and run small promos during wait times.', iconKey: 'queue' }, + ], + useCases: [ + 'Kitchen-to-table dish delivery', + 'Tray return and floor clearing', + 'Greeting and queue management at entrance', + 'Birthday and celebration moments', + ], + benefits: [ + { title: 'Faster table turns', body: 'Shorter wait times and quicker service rounds.' }, + { title: 'Less staff fatigue', body: 'Servers walk less, communicate more, and focus on guests.' }, + { title: 'Memorable moments', body: 'Distinctive guest experiences that drive word of mouth.' }, + { title: 'Brand upgrade', body: 'Visible signal that the venue is modern and forward-looking.' }, + ], + suggestedRobots: [ + { brand: 'Pudu', family: 'BellaBot', body: 'Multi-tray delivery robot designed for restaurant floors.' }, + { brand: 'Pudu', family: 'KettyBot', body: 'Greeter and delivery hybrid for entrances and small floors.' }, + { brand: 'Pudu', family: 'FlashBot Mini', body: 'Compact autonomous delivery for tight venue layouts.' }, + ], + seoTitle: 'Restaurant & Café Robots in UAE | YS Lootah Robotics', + seoDescription: + 'Delivery, host, and tray-runner robots for UAE restaurants, cafés, and F&B venues. Faster service, lower staff fatigue, premium positioning.', + }, + + hotels: { + heroTitle: 'Concierge-grade robotics for hotels and resorts.', + heroSubtitle: + 'Multi-floor delivery, cleaning, and humanoid moments designed for premium UAE hospitality operations.', + problemPoints: [ + 'Room service and back-of-house logistics consume operational hours.', + 'Multi-floor delivery is slow and labor-intensive.', + 'Premium guest moments are hard to scale consistently.', + 'Housekeeping and cleaning cycles strain night-shift teams.', + ], + solutions: [ + { title: 'Multi-floor delivery robots', body: 'Move amenities, linens, and items between rooms and floors.', iconKey: 'delivery' }, + { title: 'Room service robots', body: 'Discreet delivery to suites and corridors without disturbing other guests.', iconKey: 'service' }, + { title: 'Cleaning robots', body: 'Quiet, automated cleaning for lobbies, corridors, and back areas.', iconKey: 'cleaning' }, + { title: 'Humanoid concierge', body: 'Signature welcomes, activations, and press-worthy guest moments.', iconKey: 'humanoid' }, + ], + useCases: [ + 'Toiletries and amenity delivery to suites', + 'Room-service tray runs across floors', + 'Lobby and corridor cleaning between peaks', + 'VIP welcomes and brand events', + ], + benefits: [ + { title: 'Reduced overhead', body: 'Less repetitive movement across floors and zones.' }, + { title: 'Faster response', body: 'Guest requests are fulfilled with less delay.' }, + { title: 'Signature moments', body: 'Memorable touches that lift the property brand.' }, + { title: 'Calmer nights', body: 'Lower fatigue on housekeeping and night-shift teams.' }, + ], + suggestedRobots: [ + { brand: 'Pudu', family: 'FlashBot family', body: 'Multi-floor autonomous delivery for hotel operations.' }, + { brand: 'Pudu', family: 'Cleaning lineup', body: 'CC1 and SH1-class platforms for hotel cleaning routines.' }, + { brand: 'Unitree', family: 'G1 / H1 humanoids', body: 'Premium concierge moments and PR-worthy activations.' }, + ], + seoTitle: 'Hotel & Resort Robots in UAE | YS Lootah Robotics', + seoDescription: + 'Multi-floor delivery, cleaning, and humanoid concierge robots for hotels and resorts across the UAE. Local Dubai support and deployment.', + }, + + malls: { + heroTitle: 'Robotics for high-traffic retail environments.', + heroSubtitle: + 'Cleaning, service, security, and activation robots tuned for UAE malls, retail flagships, and large public venues.', + problemPoints: [ + 'Large floor areas are hard to clean and patrol consistently.', + 'Brand activations need standout, repeatable moments.', + 'Wayfinding and basic service stretch the operations team.', + 'Night security coverage is costly and uneven.', + ], + solutions: [ + { title: 'Cleaning robots', body: 'Continuous floor coverage during off-peak hours and overnights.', iconKey: 'cleaning' }, + { title: 'Service & wayfinding robots', body: 'Help shoppers find stores, answer basic queries, and guide flows.', iconKey: 'guide' }, + { title: 'Humanoid activation robots', body: 'Brand events, photo moments, openings, and seasonal campaigns.', iconKey: 'humanoid' }, + { title: 'Quadruped security robots', body: 'Inspection and perimeter coverage after closing.', iconKey: 'quadruped' }, + ], + useCases: [ + 'Overnight floor cleaning and disinfection', + 'Wayfinding for renovated or new layouts', + 'Activations for store openings and launches', + 'Patrol rounds after operating hours', + ], + benefits: [ + { title: 'Consistent cleanliness', body: 'Standards stay uniform across large floor areas.' }, + { title: 'Share-worthy moments', body: 'Activations that generate organic social content.' }, + { title: 'Lower repetitive load', body: 'Cleaning and patrol staff focus on higher-value work.' }, + { title: 'Continuous monitoring', body: 'Night coverage that does not depend on additional headcount.' }, + ], + suggestedRobots: [ + { brand: 'Pudu', family: 'Cleaning lineup', body: 'Floor-cleaning robots designed for large commercial spaces.' }, + { brand: 'Pudu', family: 'Service & greeter robots', body: 'KettyBot-class platforms for wayfinding and engagement.' }, + { brand: 'Unitree', family: 'Go2 / B2 quadrupeds', body: 'Autonomous patrol and inspection across mall facilities.' }, + { brand: 'Unitree', family: 'Humanoid platforms', body: 'G1 and H1 for retail activations and brand moments.' }, + ], + seoTitle: 'Shopping Mall Robots in UAE | YS Lootah Robotics', + seoDescription: + 'Cleaning, service, activation, and patrol robots for UAE shopping malls and retail flagships. Pudu and Unitree, deployed and supported locally.', + }, + + healthcare: { + heroTitle: 'Autonomous robotics for healthcare operations.', + heroSubtitle: + 'Transport supplies, meals, and medication around UAE clinics and hospitals — so clinicians can focus on patient care.', + problemPoints: [ + 'Clinical staff lose hours to non-clinical transport tasks.', + 'Internal logistics across floors slow down service delivery.', + 'Cleaning frequency must stay high without burning out teams.', + 'Visitor flow and guidance load reception and front desks.', + ], + solutions: [ + { title: 'Delivery robots', body: 'Autonomous transport of meals, linens, and routine supplies.', iconKey: 'delivery' }, + { title: 'Medication-route robots', body: 'Predictable, traceable internal runs between pharmacy and wards.', iconKey: 'platform' }, + { title: 'Cleaning robots', body: 'Routine floor cleaning between shifts and patient cycles.', iconKey: 'cleaning' }, + { title: 'Visitor guidance robots', body: 'Direct visitors to wards, clinics, and waiting areas.', iconKey: 'guide' }, + ], + useCases: [ + 'Pharmacy-to-ward medication delivery', + 'Meal trays to patient floors', + 'Linen and supply runs between wings', + 'Visitor wayfinding in large facilities', + ], + benefits: [ + { title: 'More bedside time', body: 'Clinicians spend more time on patient care, not transport.' }, + { title: 'Predictable logistics', body: 'Internal runs become consistent and traceable.' }, + { title: 'Lower contamination risk', body: 'Reduced cross-handling on routine routes.' }, + { title: 'Less strain', body: 'Support teams cover repetitive work with less fatigue.' }, + ], + suggestedRobots: [ + { brand: 'Pudu', family: 'FlashBot family', body: 'Autonomous internal delivery for hospital operations.' }, + { brand: 'Pudu', family: 'Cleaning lineup', body: 'CC1 and SH1-class platforms for healthcare environments.' }, + { brand: 'Pudu', family: 'KettyBot', body: 'Visitor reception and basic wayfinding at entrances.' }, + ], + seoTitle: 'Healthcare Robots in UAE | YS Lootah Robotics', + seoDescription: + 'Autonomous delivery, cleaning, and visitor-guidance robots for UAE clinics, hospitals, and healthcare networks. Local support from Dubai.', + }, + + education: { + heroTitle: 'Hands-on robotics for STEM and innovation.', + heroSubtitle: + 'Humanoid and quadruped robots that bring AI, programming, and modern robotics into UAE schools, universities, and innovation labs.', + problemPoints: [ + 'STEM curricula need tangible robotics platforms for AI and motion learning.', + 'Schools want flagship innovation moments and visible identity.', + 'Teachers need approachable platforms for hands-on labs.', + 'Recruiting top STEM students depends on signature equipment.', + ], + solutions: [ + { title: 'Humanoid robots', body: 'General-purpose platforms for AI, motion, and human-robot interaction labs.', iconKey: 'humanoid' }, + { title: 'Quadruped robots', body: 'Programmable platforms for autonomy, locomotion, and research projects.', iconKey: 'quadruped' }, + { title: 'STEM-ready kits', body: 'Course-aligned robotics hardware for school labs and clubs.', iconKey: 'platform' }, + { title: 'Open SDK platforms', body: 'Hands-on coding access for advanced students and researchers.', iconKey: 'sensor' }, + ], + useCases: [ + 'AI and motion programming labs', + 'Robotics clubs and competitions', + 'Open days, expos, and school showcases', + 'Faculty research and dissertation projects', + ], + benefits: [ + { title: 'Future-ready skills', body: 'Students learn real-world robotics on real platforms.' }, + { title: 'Signature programs', body: 'Flagship robotics labs attract talent and partnerships.' }, + { title: 'Research uplift', body: 'Quadruped and humanoid platforms support advanced research.' }, + { title: 'Visible innovation', body: 'Robotics labs position the institution as forward-looking.' }, + ], + suggestedRobots: [ + { brand: 'Unitree', family: 'G1 humanoid', body: 'Research-friendly humanoid platform for education labs.' }, + { brand: 'Unitree', family: 'Go2 / Go2 EDU', body: 'Programmable quadruped for autonomy and STEM coursework.' }, + { brand: 'Unitree', family: 'B2 quadruped', body: 'Higher-capability platform for advanced research and projects.' }, + ], + seoTitle: 'Education & STEM Robots in UAE | YS Lootah Robotics', + seoDescription: + 'Humanoid and quadruped robots for UAE schools, universities, and innovation labs. Hands-on AI and robotics education with local Dubai support.', + }, + + security: { + heroTitle: 'Autonomous patrol and inspection robots.', + heroSubtitle: + 'Quadruped robots that patrol, inspect, and monitor critical UAE facilities — continuously and consistently.', + problemPoints: [ + 'Manual patrols are repetitive, costly, and uneven across shifts.', + 'Night coverage drops as fatigue sets in for guard teams.', + 'Hard-to-reach zones get inspected too rarely.', + 'Anomalies are missed without continuous facility monitoring.', + ], + solutions: [ + { title: 'Quadruped patrol robots', body: 'Autonomous routes across compounds, perimeters, and indoor sites.', iconKey: 'quadruped' }, + { title: 'Inspection robots', body: 'Routine checks of utility rooms, plant areas, and risk zones.', iconKey: 'inspect' }, + { title: 'Perimeter monitoring', body: 'Continuous outdoor coverage for sensitive boundaries.', iconKey: 'sensor' }, + { title: 'Sensor-equipped platforms', body: 'Thermal, audio, and visual data captured on the move.', iconKey: 'platform' }, + ], + useCases: [ + 'Overnight patrol across large compounds', + 'Routine inspection of plant and utility rooms', + 'Perimeter rounds for sensitive sites', + 'Incident response and remote live inspection', + ], + benefits: [ + { title: 'Continuous coverage', body: 'Routes run consistently across nights and shifts.' }, + { title: 'Audit-ready logs', body: 'Run histories and sensor data are easy to review.' }, + { title: 'Lower guard load', body: 'Repetitive walks shift to autonomous platforms.' }, + { title: 'Innovation image', body: 'Visible signal that the operator runs a modern facility.' }, + ], + suggestedRobots: [ + { brand: 'Unitree', family: 'Go2 quadruped', body: 'Versatile patrol and inspection platform for varied terrain.' }, + { brand: 'Unitree', family: 'B2 quadruped', body: 'Heavy-duty platform for demanding inspection routes.' }, + { brand: 'Unitree', family: 'Custom payloads', body: 'Sensor-equipped configurations for thermal and vision inspection.' }, + ], + seoTitle: 'Security & Surveillance Robots in UAE | YS Lootah Robotics', + seoDescription: + 'Quadruped patrol, inspection, and perimeter robots for UAE facilities, compounds, and critical sites. Unitree platforms with local support.', + }, + + warehouses: { + heroTitle: 'Robotics for warehouse and facility operations.', + heroSubtitle: + 'Inspection, transport, and monitoring robots that scale repetitive work across UAE logistics sites and industrial facilities.', + problemPoints: [ + 'Inventory and inspection routes scale poorly with human hours.', + 'Repetitive walks cause fatigue and tracking errors.', + 'Off-hours coverage is hard to sustain consistently.', + 'Equipment and asset monitoring is patchy without dedicated rounds.', + ], + solutions: [ + { title: 'Quadruped inspection robots', body: 'Predictable routes around aisles, racks, and plant areas.', iconKey: 'quadruped' }, + { title: 'Autonomous transport platforms', body: 'Move goods between zones with consistent timing.', iconKey: 'platform' }, + { title: 'Facility monitoring robots', body: 'Routine checks on assets, equipment, and environment.', iconKey: 'inspect' }, + { title: 'Sensor-equipped platforms', body: 'Thermal and visual data captured during regular routes.', iconKey: 'sensor' }, + ], + useCases: [ + 'Aisle and rack inspection rounds', + 'Goods movement between zones', + 'Equipment and asset condition checks', + 'Off-hours facility monitoring', + ], + benefits: [ + { title: 'Higher throughput', body: 'Routine routes run more often without extra headcount.' }, + { title: 'Traceable monitoring', body: 'Inspection logs and data are predictable and reviewable.' }, + { title: 'Lower repetitive load', body: 'Operators focus on higher-value work and edge cases.' }, + { title: 'Safer routes', body: 'Risky or restricted zones can be covered remotely.' }, + ], + suggestedRobots: [ + { brand: 'Unitree', family: 'Go2 / B2 quadrupeds', body: 'Autonomous inspection and patrol around facility zones.' }, + { brand: 'Pudu', family: 'Industrial delivery', body: 'Autonomous delivery platforms for indoor logistics.' }, + { brand: 'Unitree', family: 'Sensor-equipped builds', body: 'Custom payloads for thermal and vision inspection.' }, + ], + seoTitle: 'Warehouse & Logistics Robots in UAE | YS Lootah Robotics', + seoDescription: + 'Quadruped inspection, autonomous transport, and monitoring robots for UAE warehouses, logistics, and industrial sites. Local Dubai deployment.', + }, +};