Update src/app/layout.tsx
This commit is contained in:
@@ -1,24 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Source_Sans_3 } 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 { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({
|
||||
variable: "--font-source-sans-3",
|
||||
subsets: ["latin"]
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "URBAN CULT - Authentic Limited Drop Streetwear",
|
||||
description: "Premium streetwear brand featuring exclusive limited drops. Curated collections for urban culture leaders. Shop authentic contemporary fashion.",
|
||||
keywords: "streetwear, limited drops, urban fashion, exclusive collections, contemporary apparel, brand drops, premium quality streetwear",
|
||||
metadataBase: new URL("https://urbancult.com"),
|
||||
alternates: {
|
||||
canonical: "https://urbancult.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "URBAN CULT - Authentic Urban Style Limited Drops",
|
||||
description: "Premium streetwear collections designed for those who lead trends. Exclusive releases, limited quantities, community-driven.",
|
||||
url: "https://urbancult.com",
|
||||
siteName: "URBAN CULT",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://urbancult.com/og-image.jpg",
|
||||
alt: "URBAN CULT Hero Image"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "URBAN CULT - Limited Drop Streetwear",
|
||||
description: "Authentic urban style for culture leaders. Exclusive drops, premium quality, community-first.",
|
||||
images: ["https://urbancult.com/twitter-image.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${sourceSans3.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user