From b1800f28d18f1bf3e64d588d1a66bab24ce0fafc Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 23:57:28 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 43 +++++++------------------------------------ 1 file changed, 7 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1aa5d8d..070ee68 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } 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 lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const cairo = Cairo({ subsets: ["arabic"] }); export const metadata: Metadata = { - title: "احجز فنادقك في الجزائر - أفضل الأسعار والخدمة", description: "منصة حجز فنادق موثوقة متخصصة في الفنادق الجزائرية. اختر من أفضل الخيارات في جميع الولايات بأسعار تنافسية", keywords: "فنادق الجزائر، حجز فندق، الجزائر العاصمة، عنابة، قسنطينة، وهران، سطيف", openGraph: { - title: "احجز فنادقك في الجزائر", description: "اكتشف وحجز أفضل الفنادق في الجزائر بسهولة", type: "website", siteName: "فندق الجزائر", images: [ - { - url: "http://img.b2bpic.net/free-photo/luxury-poolside-experience-where-guests-bask-opulence-cabanas_1268-31113.jpg", alt: "فندق فاخر في الجزائر"}, - ], - }, -}; + title: "فندق الجزائر - احجز فنادقك الآن", description: "احجز إقامتك في أفخم فنادق الجزائر بأسعار تنافسية"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}