Update src/app/layout.tsx

This commit is contained in:
2026-03-10 01:59:48 +00:00
parent fd3cc92a99
commit e00dc9c6e0

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={outfit.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}