Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 01:30:12 +00:00
2 changed files with 13 additions and 42 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="ar" dir="rtl">
<body className={`${cairo.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1415,7 +1387,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-inter), sans-serif;
font-family: var(--font-cairo), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-libre-baskerville), serif;
font-family: var(--font-cairo), serif;
}