Update src/app/layout.tsx

This commit is contained in:
2026-03-12 09:40:17 +00:00
parent 7ab1fd2920
commit ae4a2ed762

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Raleway } 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 { Raleway } 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 raleway = Raleway({
variable: "--font-raleway",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Vivi Tropea - Experiential Tourism & Rewards in Calabria",
description: "Discover authentic Calabria with boat tours, horseback rides, wellness retreats, and our exclusive 10% cash back Special Card. Book immersive experiences today.",
keywords: "Tropea tourism, Calabria experiences, boat tours, wellness spa, cash back rewards, adventure activities, Mediterranean vacation",
metadataBase: new URL("https://vivi-tropea.com"),
alternates: {
canonical: "https://vivi-tropea.com",
},
openGraph: {
title: "Vivi Tropea - Experience Authentic Calabria",
description: "Immersive experiences + 10% cash back rewards. Boat tours, spa, adventure, cultural borghi tours.",
url: "https://vivi-tropea.com",
siteName: "Vivi Tropea",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/panoramic-view-las-catedrales-beach-ribadeo-spain_181624-30478.jpg",
alt: "Tropea sunset Mediterranean coast",
},
],
},
twitter: {
card: "summary_large_image",
title: "Vivi Tropea - Experience Authentic Calabria",
description: "Discover boat tours, wellness retreats, and earn 10% cash back rewards.",
images: ["http://img.b2bpic.net/free-photo/panoramic-view-las-catedrales-beach-ribadeo-spain_181624-30478.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${raleway.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}