From 1011f89b436c7cbb0981644ed4282faf31d44b62 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 04:39:09 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1429 -------------------------------------------- 1 file changed, 1429 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c505268..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1429 +0,0 @@ -import type { Metadata } from "next"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "ZARBAFT ROYALE - Premium Luxury Fashion", - description: "Discover exquisite luxury fashion collections at ZARBAFT ROYALE. Premium clothing, authentic quality, and exclusive pieces curated for the discerning taste.", - keywords: "luxury fashion, premium clothing, designer wear, Pakistan fashion, luxury collection, authentic style", - metadataBase: new URL("https://zarbaft-royale.com"), - alternates: { - canonical: "https://zarbaft-royale.com", - }, - openGraph: { - title: "ZARBAFT ROYALE - Premium Luxury Fashion", - description: "Exquisite collections curated for the discerning eye. Each piece represents elegance, craftsmanship, and timeless style.", - url: "https://zarbaft-royale.com", - siteName: "ZARBAFT ROYALE", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/pretty-blonde-woman-with-wavy-hair-dressed-skirt-light-blouse-white-jacket-sits-chair_197531-33594.jpg", - alt: "ZARBAFT ROYALE Luxury Collection", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "ZARBAFT ROYALE - Premium Luxury Fashion", - description: "Discover exquisite luxury fashion collections curated for elegance and timeless style.", - images: ["http://img.b2bpic.net/free-photo/pretty-blonde-woman-with-wavy-hair-dressed-skirt-light-blouse-white-jacket-sits-chair_197531-33594.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -