From 5bfeb2887c5a63c8d4853c8e8309b3d1e1c4bed4 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 06:04:23 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++-------------------------------------- 1 file changed, 8 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5b471db..fa6eadb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,20 @@ import type { Metadata } from "next"; -import { Roboto } from "next/font/google"; +import { Outfit } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const roboto = Roboto({ - variable: "--font-roboto", - subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const outfit = Outfit({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Anmol Collection | Premium Pakistani Women's Fashion", - description: "Elegant stitched & unstitched suits, organza dresses, and embroidered outfits for Eid, weddings & special occasions. Premium quality, affordable luxury from Quetta.", - keywords: "Pakistani women clothing, embroidered suits, organza dresses, Eid collection, women fashion, boutique Quetta", - metadataBase: new URL("https://anmolcollection.com"), - alternates: { - canonical: "https://anmolcollection.com", - }, - openGraph: { - title: "Anmol Collection | Premium Pakistani Fashion", - description: "Discover elegant traditional wear with luxury embroidery and modern designs", - url: "https://anmolcollection.com", - siteName: "Anmol Collection", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Anmol Collection | Premium Pakistani Women's Fashion", - description: "Elegant stitched & unstitched collections for every occasion", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Anmol Collection - Premium Traditional Pakistani Fashion", description: "Handpicked collections trusted by 17K+ followers. Discover elegant stitched & unstitched traditional wear with beautiful embroidery and affordable luxury prices."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}