From 278feeb66031affc1b720ab2431968470b8ec00f Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 07:53:52 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 52 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 43 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 590a34c..612bbab 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,33 +1,67 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Public_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Public_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "مجموعة العطيشان للسلامة - أنظمة إنذار وإطفاء الحريق في مكة", + description: "شركة موثوقة في مكة لتركيب وصيانة أنظمة إنذار الحريق والإطفاء الآلية. خدمة دعم فني 24/7 - اتصل على 050 384 7143", + keywords: "أنظمة السلامة مكة، إنذار حريق، نظام إطفاء، معدات السلامة، تركيب إنذار", + metadataBase: new URL("https://otaishansafety.com"), + alternates: { + canonical: "https://otaishansafety.com", + }, + openGraph: { + title: "مجموعة العطيشان للسلامة", + description: "أنظمة السلامة والحماية من الحريق الموثوقة في مكة", + url: "https://otaishansafety.com", + siteName: "مجموعة العطيشان للسلامة", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=4dql2r", + alt: "نظام إنذار حريق احترافي لوحة تحكم", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "مجموعة العطيشان للسلامة", + description: "أنظمة السلامة والحماية من الحريق الموثوقة في مكة", + }, +}; + export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( - + - + {children}