From 5eea79b334f644e4c58bbfb75a932fea95a2cda2 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 14:53:42 +0000 Subject: [PATCH 1/3] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 08b40c4..47d54e6 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -100,7 +100,7 @@ export default function ContactPage() {
Date: Tue, 10 Mar 2026 14:53:43 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 42 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 590a34c..dd43815 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,56 @@ 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: "عيادة DR N.KADI البيطرية | الرعاية المتخصصة للحيوانات الأليفة", + description: "عيادة DR N.KADI البيطرية - الخيار الأول للرعاية البيطرية المتخصصة في المنطقة. خدمات شاملة باستخدام أحدث التقنيات الطبية وفريق متخصص.", + keywords: "عيادة بيطرية، طبيب بيطري، رعاية حيوانات، تطعيمات، جراحة، استشارة بيطرية", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "عيادة DR N.KADI البيطرية", + description: "الرعاية البيطرية المتخصصة الأولى في المنطقة", + type: "website", + siteName: "عيادة DR N.KADI", + images: [ + { + url: "http://img.b2bpic.net/free-photo/medium-shot-smiley-people-cute-dog_23-2149304340.jpg", + alt: "عيادة DR N.KADI البيطرية", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "عيادة DR N.KADI البيطرية", + description: "الخيار الأول للعناية البيطرية المتخصصة", + images: ["http://img.b2bpic.net/free-photo/medium-shot-smiley-people-cute-dog_23-2149304340.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +59,9 @@ export default function RootLayout({ return ( - + {children}