From 2f5c3cb44001fa6f23470dae656bd70fc02af4fc Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 09:33:11 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 44 ++++++-------------------------------------- 1 file changed, 6 insertions(+), 38 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cb29365..81489f6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Labubu Store | Premium Vinyl Collectible Figures", description: "Shop authentic, limited-edition Labubu vinyl figures. Official licensed collectibles with certification. Exclusive designs, investment-grade quality.", keywords: "labubu, collectible figures, vinyl toys, limited edition, toy collecting", openGraph: { - title: "Labubu Store | Premium Collectible Figures", description: "Discover rare and exclusive Labubu vinyl figures for collectors worldwide.", siteName: "Labubu Store", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/colorful-pop-it-toy-background-close-up_58702-5470.jpg", alt: "Labubu collectible figures"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Labubu Store | Premium Vinyl Collectibles", description: "Authentic, limited-edition Labubu figures for serious collectors.", images: ["http://img.b2bpic.net/free-photo/soviet-dolls-toys-chernobyl-nuclear-disaster-area_627829-11655.jpg"], - }, -}; + title: "Labubu Store - Premium Vinyl Collectibles", description: "Discover authentic Labubu figures. Limited editions, exclusive designs, and rare collectibles for serious enthusiasts."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}