Merge version_1 into main #1

Merged
bender merged 3 commits from version_1 into main 2026-03-10 14:53:53 +00:00
3 changed files with 46 additions and 12 deletions

View File

@@ -100,7 +100,7 @@ export default function ContactPage() {
<div id="faq" data-section="faq">
<FaqSplitMedia
faqs={faqItems}
imageSrc="http://img.b2bpic.net/free-photo/veterinarian-taking-care-pet-dog_23-2149198677.jpg"
imageSrc="http://img.b2bpic.net/free-photo/veterinarian-taking-care-pet-dog_23-2149198677.jpg?_wi=2"
imageAlt="أسئلة شائعة"
mediaAnimation="slide-up"
faqsAnimation="slide-up"

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${publicSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +73,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -90,14 +90,14 @@ export default function ServicesPage() {
id: "7",
name: "الحجز والمراقبة",
price: "رعاية مستمرة",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-veterinarian-taking-care-dog_23-2149100186.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-veterinarian-taking-care-dog_23-2149100186.jpg?_wi=1",
imageAlt: "الحجز والمراقبة"
},
{
id: "8",
name: "التصوير الطبي",
price: "تشخيص دقيق",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-veterinarian-taking-care-dog_23-2149100186.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-veterinarian-taking-care-dog_23-2149100186.jpg?_wi=2",
imageAlt: "التصوير الطبي"
}
]}
@@ -144,7 +144,7 @@ export default function ServicesPage() {
content: "نتبع أفضل معايير النظافة والتعقيم العالمية. فريقنا مدرب على التعامل الحساس والآمن مع جميع الحيوانات مع استخدام أحدث التقنيات الطبية الآمنة."
}
]}
imageSrc="http://img.b2bpic.net/free-photo/veterinarian-taking-care-pet-dog_23-2149198677.jpg"
imageSrc="http://img.b2bpic.net/free-photo/veterinarian-taking-care-pet-dog_23-2149198677.jpg?_wi=1"
imageAlt="أسئلة شائعة"
mediaAnimation="slide-up"
faqsAnimation="slide-up"