From 70ae5d81b098cc60cc811e9e3271ad193994ab74 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 23:50:42 +0000 Subject: [PATCH 1/2] 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 e0ed300..d925a4a 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 { Roboto } from "next/font/google"; +import { Cairo } 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 roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const cairo = Cairo({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Black Wing - ساعات فاخرة سويسرية", description: "اكتشف مجموعة Black Wing من الساعات الفاخرة السويسرية. جودة عالية، تصميم أنيق، وضمان مدى الحياة. تسوق الآن واستثمر في الأناقة.", keywords: "ساعات فاخرة، ساعات سويسرية، ساعات رجالية، ساعات نسائية، Black Wing، ساعات احترافية", metadataBase: new URL("https://blackwing-watches.ae"), - alternates: { - canonical: "https://blackwing-watches.ae"}, - openGraph: { - title: "Black Wing - ساعات فاخرة سويسرية", description: "استكشف مجموعة Black Wing من الساعات الفاخرة. كل ساعة مصنوعة بحرفية عالية وضمان مدى الحياة.", url: "https://blackwing-watches.ae", siteName: "Black Wing", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/luxurious-lifestyle-concept-table_23-2148229220.jpg", alt: "ساعة Black Wing الفاخرة"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Black Wing - ساعات فاخرة سويسرية", description: "استكشف مجموعة Black Wing من الساعات الفاخرة المصممة بدقة وأناقة.", images: ["http://img.b2bpic.net/free-photo/luxurious-lifestyle-concept-table_23-2148229220.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Black Wing - ساعات فاخرة للعصر الحديث", description: "اكتشف مجموعتنا الحصرية من الساعات السويسرية الفاخرة. كل ساعة صُنعت بدقة عالية وحرفية استثنائية."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}