Update src/app/layout.tsx

This commit is contained in:
2026-03-15 17:12:03 +00:00
parent 58a409ec1e
commit 7240b78234

View File

@@ -1,18 +1,22 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Inter_Tight } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Inter_Tight } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const interTight = Inter_Tight({
variable: "--font-inter-tight",
@@ -20,6 +24,39 @@ const interTight = Inter_Tight({
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
title: "Nouvelles Terres - Authentic Algeria Sahara Tours",
description: "Discover authentic Algeria with expert local guides. Sahara tours, Djanet expeditions, and cultural experiences. 4.6★ rated travel agency.",
keywords: "Algeria tours, Sahara desert, Djanet expeditions, Taghit, Casbah Algiers, guided tours, travel agency",
metadataBase: new URL("https://nouvellesteeres.com"),
alternates: {
canonical: "https://nouvellesteeres.com",
},
openGraph: {
title: "Nouvelles Terres - Discover Authentic Algeria",
description: "Authentic guided journeys through the Sahara and Algeria's most breathtaking landscapes.",
url: "https://nouvellesteeres.com",
siteName: "Nouvelles Terres",
images: [
{
url: "http://img.b2bpic.net/free-photo/beautiful-landscape-orange-sand-dune-orange-sand-namib-desert-namib-naukluft-national-park-sossusvlei-namibia_1150-21675.jpg",
alt: "Golden Sahara dunes at sunset",
},
],
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Nouvelles Terres - Discover Authentic Algeria",
description: "Authentic Sahara tours and cultural adventures.",
images: ["http://img.b2bpic.net/free-photo/beautiful-landscape-orange-sand-dune-orange-sand-namib-desert-namib-naukluft-national-park-sossusvlei-namibia_1150-21675.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -28,7 +65,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${interTight.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -40,4 +79,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}