From 5cbd155699dd69f6e08e0ea1f02610b24ea1e847 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 08:02:15 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1408 +------------------------------------------- 1 file changed, 11 insertions(+), 1397 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dab5729..ea362e8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1412 +1,27 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Premium Abayas | Elegant Modest Fashion", description: "Discover timeless elegance with our premium collection of handcrafted abayas. Quality fabrics, expert craftsmanship, and perfect fit for the modern woman.", keywords: "abayas, modest fashion, traditional dress, Islamic clothing, elegant abayas, premium quality", metadataBase: new URL("https://abayas.com"), - alternates: { - canonical: "https://abayas.com"}, - openGraph: { - title: "Premium Abayas | Elegant Modest Fashion", description: "Discover timeless elegance with our premium collection of handcrafted abayas.", url: "https://abayas.com", siteName: "ABAYAS", type: "website"}, - twitter: { - card: "summary_large_image", title: "Premium Abayas | Elegant Modest Fashion"}, - robots: { - index: true, - follow: true, - }, -}; + title: "ABAYAS - Premium Modest Fashion", description: "Discover timeless elegance and comfort with our premium collection of abayas. Crafted with the finest fabrics and attention to detail."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -