From d1ee7fddedc39a9c4f5aaf3c88c060c3c0fd7ff6 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 28 May 2026 22:28:42 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 32 ++++++++++++++++++-------------- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4b13001..f1512c6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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({ {children}