diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e3e5758..e8effd1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,25 @@ import type { Metadata } from "next"; -import { Libre_Baskerville, Inter } from "next/font/google"; +import { Cairo } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const cairo = Cairo({ + variable: "--font-cairo", subsets: ["arabic", "latin"], + weight: ["200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "MAHDI TELECOM | Premium Phones & Accessories - El Meghaier, Algeria", description: "متجر الهواتف الذكية والإكسسوارات في المقطع - أفضل الأسعار والخدمة السريعة | MAHDI TELECOM: Original Smartphones, Accessories, Fast Service. 4.6★ Trusted Mobile Store.", keywords: "MAHDI TELECOM, متجر هواتف, خدمة الهواتف, المقطع, Algeria, smartphones, phone accessories, fast service, trusted store, wireless chargers, screen protectors", metadataBase: new URL("https://mahditelecom.com"), - alternates: { - canonical: "https://mahditelecom.com" - }, - openGraph: { - title: "MAHDI TELECOM | Premium Mobile Phones Store", description: "Discover original smartphones and premium accessories at the best prices. 4.6★ Rating. Fast service in El Meghaier, Algeria.", url: "https://mahditelecom.com", siteName: "MAHDI TELECOM", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVNOd7Ij9kOvlq4lUwQBmQzLNi/a-sleek-modern-smartphone-product-showca-1772673845688-4a883c1d.png", alt: "MAHDI TELECOM - Premium Phone Store" - } - ] - }, - twitter: { - card: "summary_large_image", title: "MAHDI TELECOM | Original Phones & Accessories", description: "Best prices on premium smartphones and accessories. Trusted shop in El Meghaier.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVNOd7Ij9kOvlq4lUwQBmQzLNi/a-sleek-modern-smartphone-product-showca-1772673845688-4a883c1d.png"] - }, - robots: { - index: true, - follow: true - } -}; + title: "MAHDI TELECOM", description: "Latest Smartphones and Premium Accessories"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +