From c79333c3223219cb2694b217fcf9768566f02544 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 10:49:59 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 46 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7ce82d1..bff20b3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } 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 raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "VESTIQUE - Premium Fashion Clothing Store | Shop Curated Collections", description: "Discover premium fashion at VESTIQUE. Curated clothing collections, timeless designs, and exceptional quality. Fast shipping, easy returns, and style for every occasion.", keywords: "fashion store, clothing, premium apparel, online shopping, designer wear, trendy fashion", metadataBase: new URL("https://vestique.com"), - alternates: { - canonical: "https://vestique.com"}, - openGraph: { - title: "VESTIQUE - Premium Fashion Clothing Store", description: "Discover curated fashion collections that elevate your personal style", url: "https://vestique.com", siteName: "VESTIQUE", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/beautiful-stylish-blond-girl-knitted-sweater-with-shopping-bags-dreamily-walking-city-street_574295-2269.jpg", alt: "Premium fashion collection showcase"}, - ], - }, - twitter: { - card: "summary_large_image", title: "VESTIQUE - Premium Fashion Store", description: "Curated clothing collections with exceptional quality and style", images: ["http://img.b2bpic.net/free-photo/beautiful-stylish-blond-girl-knitted-sweater-with-shopping-bags-dreamily-walking-city-street_574295-2269.jpg"], - }, -}; + title: "VESTIQUE | Premium Fashion", description: "Discover curated fashion collections that elevate your personal style."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}