diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 14f209d..819af95 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1427 +1,22 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './globals.css'; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "Morocco Private Journeys | Luxury Private Travel Experiences", description: "Exclusive private journeys through Morocco with dedicated driver, luxury vehicles, and bespoke itineraries. Six signature circuits, three tiers of luxury—100% private, personalized, unforgettable.", keywords: "private Morocco travel, luxury Morocco journeys, bespoke travel Morocco, private car rental Morocco, exclusive travel experiences, desert luxury tours, imperial cities tour, White-glove service Morocco", metadataBase: new URL("https://moroccoprivate.com"), - alternates: { - canonical: "https://moroccoprivate.com" - }, - openGraph: { - title: "Morocco Private Journeys | Luxury Private Travel", description: "Experience Morocco at your pace. Six signature private journeys, three luxury tiers, entirely yours. Premium vehicles, dedicated drivers, unforgettable memories.", url: "https://moroccoprivate.com", siteName: "Morocco Private Journeys", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/stylish-beautiful-woman-walking-desert-sand-white-outfit-wearing-straw-hat-sunset_285396-9179.jpg", alt: "golden Sahara dunes sunset Morocco landscape" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Morocco Private Journeys | Luxury Private Travel", description: "Six signature private journeys through Morocco. Luxury vehicles, expert guides, bespoke itineraries. Your journey, your pace, entirely yours.", images: ["http://img.b2bpic.net/free-photo/stylish-beautiful-woman-walking-desert-sand-white-outfit-wearing-straw-hat-sunset_285396-9179.jpg"] - }, - robots: { - index: true, - follow: true - } + title: 'Morocco Private Journeys', + description: 'Luxury private car journeys through Morocco with dedicated drivers and personalized itineraries', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -