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 (
-
-