Update src/app/layout.tsx

This commit is contained in:
2026-05-28 22:28:42 +00:00
parent 254e49f289
commit d1ee7fdded

View File

@@ -1,26 +1,30 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Inter_Tight } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
const interTight = Inter_Tight({
variable: "--font-inter-tight", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
title: "KOVA | Premium Heavyweight Streetwear", description: "Discover KOVA: premium heavyweight streetwear with oversized fits, puff print graphics, and 100% cotton fabrics. Designed for everyday motion.", openGraph: {
title: "KOVA | Premium Heavyweight Streetwear", description: "Discover KOVA: premium heavyweight streetwear with oversized fits, puff print graphics, and 100% cotton fabrics. Designed for everyday motion.", url: "https://www.kovaclothing.com", siteName: "KOVA", images: [{
url: "http://img.b2bpic.net/free-photo/person-using-eco-transport-new-york_23-2149219980.jpg", alt: "streetwear fashion model black clothes urban"
}],
type: "website"
},
twitter: {
card: "summary_large_image", title: "KOVA | Premium Heavyweight Streetwear", description: "Discover KOVA: premium heavyweight streetwear with oversized fits, puff print graphics, and 100% cotton fabrics. Designed for everyday motion.", images: ["http://img.b2bpic.net/free-photo/person-using-eco-transport-new-york_23-2149219980.jpg"]
},
robots: {
index: true,
follow: true
}
};
export default function RootLayout({
@@ -32,7 +36,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
className={`${interTight.variable} antialiased`}
>
<Tag />
{children}