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}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 1e7add2..09a7f5f 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -37,7 +37,8 @@ export default function LandingPage() {
{ name: "Contact", id: "contact" },
]}
button={{
- text: "Explore Collections", href: "collections"}}
+ text: "Explore Collections", href: "collections"
+ }}
animateOnLoad={true}
className="bg-white/80 backdrop-blur-md border border-amber-100/30"
navItemClassName="text-amber-900/80 hover:text-amber-900 transition-colors"
@@ -50,14 +51,14 @@ export default function LandingPage() {