From e6fc202f1a439be8f81fa0d0b7efd1765b9e1a4e Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 09:17:14 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bfe997..39784db 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}