chore(seo): point shop canonical/sitemap/llms to shop.yslootahrobotics.com
Some checks are pending
CI/CD / test-and-build (push) Waiting to run
CI/CD / deploy (push) Blocked by required conditions

This commit is contained in:
Najjar 2026-07-06 14:16:54 +04:00
parent 60d50e15e4
commit 0cb5693ca3
3 changed files with 14 additions and 14 deletions

View File

@ -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. > 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 ## Important Pages
- [Home](https://yslootahrobotics.com/) - [Home](https://shop.yslootahrobotics.com/)
- [All robots](https://yslootahrobotics.com/robots/) - [All robots](https://shop.yslootahrobotics.com/robots/)
- [Configure your robot (3D)](https://yslootahrobotics.com/configure/) - [Configure your robot (3D)](https://shop.yslootahrobotics.com/configure/)
- [Brands](https://yslootahrobotics.com/brands/) - [Brands](https://shop.yslootahrobotics.com/brands/)
- [Industries](https://yslootahrobotics.com/industries/) - [Industries](https://shop.yslootahrobotics.com/industries/)
- [Accessories](https://yslootahrobotics.com/accessories/) - [Accessories](https://shop.yslootahrobotics.com/accessories/)
- [Book a demo](https://yslootahrobotics.com/book-demo/) - [Book a demo](https://shop.yslootahrobotics.com/book-demo/)
- [Contact](https://yslootahrobotics.com/contact/) - [Contact](https://shop.yslootahrobotics.com/contact/)
- [About](https://yslootahrobotics.com/about/) - [About](https://shop.yslootahrobotics.com/about/)
## What we offer ## What we offer
- Robot sales in the UAE: humanoids (Unitree G1, H1), quadrupeds (Unitree Go2, B2), and Pudu delivery, reception and cleaning robots. - 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. - Accessories and add-ons for Unitree and Pudu platforms.
## Brands ## Brands
- [Unitree Robotics](https://yslootahrobotics.com/robots/): humanoid and quadruped robots. - [Unitree Robotics](https://shop.yslootahrobotics.com/robots/): humanoid and quadruped robots.
- [Pudu Robotics](https://yslootahrobotics.com/robots/): service, delivery and cleaning robots. - [Pudu Robotics](https://shop.yslootahrobotics.com/robots/): service, delivery and cleaning robots.
## Industries served ## Industries served
Hospitality, restaurants and cafes, hotels and resorts, shopping malls, healthcare, education, security and surveillance. Hospitality, restaurants and cafes, hotels and resorts, shopping malls, healthcare, education, security and surveillance.

View File

@ -2,11 +2,11 @@ import type { Metadata, Viewport } from "next";
import { ErrorBoundary } from "@/components/ErrorBoundary"; import { ErrorBoundary } from "@/components/ErrorBoundary";
import { I18nProvider } from "@/components/I18nProvider"; import { I18nProvider } from "@/components/I18nProvider";
import JsonLd from "@/components/JsonLd"; 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"; import "./globals.css";
export const metadata: Metadata = { export const metadata: Metadata = {
metadataBase: new URL('https://yslootahrobotics.com'), metadataBase: new URL(SITE_URL),
title: { title: {
default: 'YS Lootah Robotics UAE Destination for Unitree & Pudu Robotics', default: 'YS Lootah Robotics UAE Destination for Unitree & Pudu Robotics',
template: '%s | YS Lootah Robotics', template: '%s | YS Lootah Robotics',

View File

@ -1,5 +1,5 @@
// Central SEO config + structured-data builders for the shop. // 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). // Canonical page URLs (trailingSlash: true in next.config).
export const canonical = (path = '/') => { export const canonical = (path = '/') => {