diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 9fe5196..048f572 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -89,7 +89,7 @@ export default function ContactPage() { content: "نقدم استشارة أولية بسعر معقول جداً. يتم تحديد الأسعار بناءً على نوع الخدمة والتشخيص. اتصل بنا للحصول على التفاصيل الدقيقة." } ]} - imageSrc="http://img.b2bpic.net/free-photo/old-man-is-playing-with-pet-while-working-sofa-home_1150-21756.jpg" + imageSrc="http://img.b2bpic.net/free-photo/old-man-is-playing-with-pet-while-working-sofa-home_1150-21756.jpg?_wi=2" imageAlt="أسئلة التواصل" mediaAnimation="slide-up" faqsAnimation="slide-up" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 590a34c..c1438a7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,33 +1,69 @@ import type { Metadata } from "next"; +import { Public_Sans } from "next/font/google"; import { Halant } from "next/font/google"; import { Inter } 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"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); + +const inter = Inter({ + variable: "--font-inter", + 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/close-up-veterinary-doctor-taking-care-pet_23-2149267883.jpg", + alt: "عيادة DR N.KADI البيطرية", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "عيادة DR N.KADI البيطرية", + description: "الخيار الأول للعناية البيطرية المتخصصة", + images: [ + "http://img.b2bpic.net/free-photo/close-up-veterinary-doctor-taking-care-pet_23-2149267883.jpg", + ], + }, +}; + export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( - + - + {children}