diff --git a/public/llms.txt b/public/llms.txt index 3832651..a5a25b5 100644 --- a/public/llms.txt +++ b/public/llms.txt @@ -3,15 +3,15 @@ > YS Lootah Robotics is the United Arab Emirates destination for selected Unitree and Pudu robotics. We sell, configure, demonstrate and deploy humanoid, quadruped, delivery, hospitality and cleaning robots for businesses across Dubai and the UAE. Part of the Yousuf Saeed Lootah Investment Group. ## Important Pages -- [Home](https://yslootahrobotics.com/) -- [All robots](https://yslootahrobotics.com/robots/) -- [Configure your robot (3D)](https://yslootahrobotics.com/configure/) -- [Brands](https://yslootahrobotics.com/brands/) -- [Industries](https://yslootahrobotics.com/industries/) -- [Accessories](https://yslootahrobotics.com/accessories/) -- [Book a demo](https://yslootahrobotics.com/book-demo/) -- [Contact](https://yslootahrobotics.com/contact/) -- [About](https://yslootahrobotics.com/about/) +- [Home](https://shop.yslootahrobotics.com/) +- [All robots](https://shop.yslootahrobotics.com/robots/) +- [Configure your robot (3D)](https://shop.yslootahrobotics.com/configure/) +- [Brands](https://shop.yslootahrobotics.com/brands/) +- [Industries](https://shop.yslootahrobotics.com/industries/) +- [Accessories](https://shop.yslootahrobotics.com/accessories/) +- [Book a demo](https://shop.yslootahrobotics.com/book-demo/) +- [Contact](https://shop.yslootahrobotics.com/contact/) +- [About](https://shop.yslootahrobotics.com/about/) ## What we offer - Robot sales in the UAE: humanoids (Unitree G1, H1), quadrupeds (Unitree Go2, B2), and Pudu delivery, reception and cleaning robots. @@ -21,8 +21,8 @@ - Accessories and add-ons for Unitree and Pudu platforms. ## Brands -- [Unitree Robotics](https://yslootahrobotics.com/robots/): humanoid and quadruped robots. -- [Pudu Robotics](https://yslootahrobotics.com/robots/): service, delivery and cleaning robots. +- [Unitree Robotics](https://shop.yslootahrobotics.com/robots/): humanoid and quadruped robots. +- [Pudu Robotics](https://shop.yslootahrobotics.com/robots/): service, delivery and cleaning robots. ## Industries served Hospitality, restaurants and cafes, hotels and resorts, shopping malls, healthcare, education, security and surveillance. diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c640176..f3198bf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -2,11 +2,11 @@ import type { Metadata, Viewport } from "next"; import { ErrorBoundary } from "@/components/ErrorBoundary"; import { I18nProvider } from "@/components/I18nProvider"; import JsonLd from "@/components/JsonLd"; -import { OG_IMAGE, siteName, organizationJsonLd, websiteJsonLd } from "@/lib/seo"; +import { SITE_URL, OG_IMAGE, siteName, organizationJsonLd, websiteJsonLd } from "@/lib/seo"; import "./globals.css"; export const metadata: Metadata = { - metadataBase: new URL('https://yslootahrobotics.com'), + metadataBase: new URL(SITE_URL), title: { default: 'YS Lootah Robotics UAE Destination for Unitree & Pudu Robotics', template: '%s | YS Lootah Robotics', diff --git a/src/lib/seo.ts b/src/lib/seo.ts index dc5e09e..40bedfb 100644 --- a/src/lib/seo.ts +++ b/src/lib/seo.ts @@ -1,5 +1,5 @@ // Central SEO config + structured-data builders for the shop. -export const SITE_URL = (process.env.NEXT_PUBLIC_SITE_URL || 'https://yslootahrobotics.com').replace(/\/$/, ''); +export const SITE_URL = (process.env.NEXT_PUBLIC_SITE_URL || 'https://shop.yslootahrobotics.com').replace(/\/$/, ''); // Canonical page URLs (trailingSlash: true in next.config). export const canonical = (path = '/') => {