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