From e00dc9c6e04b29270dd7194de04bcf069ffbccd2 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 01:59:48 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 53 ++++++---------------------------------------- 1 file changed, 7 insertions(+), 46 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2b3e327..13dd85c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ 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 { Outfit } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const outfit = Outfit({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Motifz London | Luxury Pakistani Bridal & Groom Couture", description: "Discover bespoke luxury Pakistani bridal lehengas, groom sherwani, and couture collections handcrafted in London. Worldwide shipping. Heritage meets elegance.", keywords: "luxury bridal lehenga, Pakistani wedding couture, bespoke groom wear, Mughal embroidery, luxury sherwani, bridal couture London, Pakistani designer wear", metadataBase: new URL("https://motifz-london.com"), - alternates: { - canonical: "https://motifz-london.com"}, - openGraph: { - title: "Motifz London | Luxury Pakistani Bridal Couture", description: "Where Heritage Meets Elegance. Bespoke luxury Pakistani bridal and groom couture handcrafted in London.", url: "https://motifz-london.com", siteName: "Motifz London", type: "website", images: [ - { - url: "https://motifz-london.com/og-hero.jpg", alt: "Luxury Pakistani Bridal Collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Motifz London | Luxury Pakistani Bridal Couture", description: "Discover bespoke luxury Pakistani bridal and groom wear handcrafted in London. Worldwide shipping.", images: ["https://motifz-london.com/twitter-hero.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Motifz London | Luxury Pakistani Couture", description: "Discover bespoke groom wear, bridal collections, and luxury prêt-à-porter crafted in London. Heritage meets elegance in every piece."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}