From 9ab967dce87049bcfec7ba77b9ad39b285f5c90d Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 06:49:49 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1409 +------------------------------------------- 1 file changed, 11 insertions(+), 1398 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a0ceaec..181dd57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1413 +1,27 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Maotai | Legend of Chinese Baijiu Heritage", description: "Discover Maotai, the world's most prestigious baijiu. 400+ years of heritage, craftsmanship, and excellence in every bottle. Explore our premium collection.", keywords: "Maotai, baijiu, Chinese spirits, premium baijiu, heritage liquor, Chinese culture", metadataBase: new URL("https://maotai.com"), - alternates: { - canonical: "https://maotai.com"}, - openGraph: { - title: "Maotai | The Spirit of China's Heritage", description: "Experience legendary baijiu crafted through 400 years of tradition and mastery.", url: "https://maotai.com", siteName: "Maotai Heritage", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/elegant-golden-brochures-templates_1048-4.jpg", alt: "Premium Maotai baijiu bottle"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Maotai | Legacy of Excellence", description: "Discover the world's most prestigious baijiu heritage", images: ["http://img.b2bpic.net/free-vector/elegant-golden-brochures-templates_1048-4.jpg"], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -