Update src/app/layout.tsx

This commit is contained in:
2026-03-15 09:17:14 +00:00
parent 83c6fa60f1
commit e6fc202f1a

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Archivo } 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 { Archivo } 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 archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "REFRESH - Open Happiness | Premium Global Beverages",
description: "Discover REFRESH premium beverages available in 200+ countries. Enjoy innovative flavors backed by 135 years of expertise and genuine sustainability commitment.",
keywords: "premium beverages, refreshing drinks, sustainable drinks, cola alternative, global drinks",
metadataBase: new URL("https://refresh-beverages.com"),
alternates: {
canonical: "https://refresh-beverages.com",
},
openGraph: {
title: "REFRESH - Open Happiness | Premium Beverages",
description: "Refreshing moments shared across 200 countries. Discover flavors backed by 135 years of innovation.",
url: "https://refresh-beverages.com",
siteName: "REFRESH",
images: [
{
url: "http://img.b2bpic.net/free-photo/oktoberfest-celebration-with-beer-still-life_23-2151639936.jpg",
alt: "Premium REFRESH beverage bottle showcase",
},
],
type: "website",
},
twitter: {
card: "summary_large_image",
title: "REFRESH - Open Happiness",
description: "Premium beverages for refreshing moments worldwide",
images: ["http://img.b2bpic.net/free-photo/oktoberfest-celebration-with-beer-still-life_23-2151639936.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={`${archivo.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}