Update src/app/layout.tsx

This commit is contained in:
2026-02-25 18:09:03 +00:00
parent 848225b348
commit 8ae43f5f5c

View File

@@ -1,29 +1,19 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Poppins } from "next/font/google"; import { Bebas_Neue } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const poppins = Poppins({ const bebasNeue = Bebas_Neue({
variable: "--font-poppins", variable: "--font-bebas-neue", subsets: ["latin"],
subsets: ["latin"], weight: ["400"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "UrbanStyle - Premium Urban Fashion & Streetwear", title: "UrbanStyle - Premium Urban Fashion & Streetwear", description: "Shop authentic urban fashion and premium streetwear. Discover curated collections with fast shipping, exceptional service, and membership rewards. Join 50K+ happy customers.", keywords: "urban fashion, streetwear, contemporary apparel, urban style, clothing store, premium fashion", openGraph: {
description: "Shop authentic urban fashion and premium streetwear. Discover curated collections with fast shipping, exceptional service, and membership rewards. Join 50K+ happy customers.", title: "UrbanStyle - Urban Fashion Store", description: "Premium urban fashion and streetwear collections", siteName: "UrbanStyle", type: "website"},
keywords: "urban fashion, streetwear, contemporary apparel, urban style, clothing store, premium fashion",
openGraph: {
title: "UrbanStyle - Urban Fashion Store",
description: "Premium urban fashion and streetwear collections",
siteName: "UrbanStyle",
type: "website",
},
twitter: { twitter: {
card: "summary_large_image", card: "summary_large_image", title: "UrbanStyle - Urban Fashion Store"},
title: "UrbanStyle - Urban Fashion Store",
},
robots: { robots: {
index: true, index: true,
follow: true, follow: true,
@@ -39,7 +29,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body
className={`${poppins.variable} antialiased`} className={`${bebasNeue.variable} antialiased`}
> >
<Tag /> <Tag />
{children} {children}