From b0ad4bc42acf274a1e7a0370e2292d541955d2da Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 19:01:59 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 +++++++++------------------------------------- 1 file changed, 10 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b286751..acb8fa5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +1,22 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } 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 inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "XPLORE Tunisia Adventures & Tours - Luxury Travel Experiences", description: "Discover authentic Tunisian adventures: desert treks, horseback tours, quad biking, and luxury catamaran cruises. Book your unforgettable journey today.", keywords: "Tunisia travel, adventure tours, Sahara desert, Mediterranean cruise, horseback riding, luxury travel agency", metadataBase: new URL("https://xploretunisia.com"), - alternates: { - canonical: "https://xploretunisia.com"}, - openGraph: { - title: "XPLORE Tunisia Adventures & Tours", description: "Experience the magic of Tunisia with authentic guided adventures through the Sahara and Mediterranean coast.", url: "https://xploretunisia.com", siteName: "XPLORE Tunisia Adventures & Tours", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/landscape-evening_119272-26.jpg", alt: "Sahara sunset adventure"}, - ], - }, - twitter: { - card: "summary_large_image", title: "XPLORE Tunisia Adventures & Tours", description: "Discover authentic Tunisian adventures - desert treks, horseback tours, quad biking, and luxury cruises.", images: ["http://img.b2bpic.net/free-photo/landscape-evening_119272-26.jpg"], - }, - robots: { - index: true, - follow: true, - }, + title: 'XPLORE Tunisia Adventures & Tours', + description: 'Discover unforgettable Tunisian adventures - Sahara treks, Mediterranean cruises, and cultural experiences', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}