5 Commits

Author SHA1 Message Date
2f5c3cb440 Update src/app/layout.tsx 2026-03-05 09:33:11 +00:00
0edbb59e6e Merge version_1 into main
Merge version_1 into main
2026-03-05 07:18:22 +00:00
93794ca8f3 Merge version_1 into main
Merge version_1 into main
2026-03-05 07:17:26 +00:00
cd79348a97 Merge version_1 into main
Merge version_1 into main
2026-03-05 07:15:48 +00:00
9804d5649f Merge version_1 into main
Merge version_1 into main
2026-03-05 07:14:36 +00:00

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1413,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}