Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
39
src/app/about/page.tsx
Normal file
39
src/app/about/page.tsx
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
|
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||||
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
|
import TeamCardSix from '@/components/sections/team/TeamCardSix';
|
||||||
|
|
||||||
|
export default function AboutPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
navItems={[
|
||||||
|
{ name: "الرئيسية", id: "/" },
|
||||||
|
{ name: "من نحن", id: "/about" },
|
||||||
|
{ name: "خدماتنا", id: "/" },
|
||||||
|
{ name: "تواصل معنا", id: "/" },
|
||||||
|
]}
|
||||||
|
brandName="Aljoman Dental"
|
||||||
|
/>
|
||||||
|
<InlineImageSplitTextAbout
|
||||||
|
heading={[{ type: 'text', content: "مهمتنا ورؤيتنا" }]}
|
||||||
|
/>
|
||||||
|
<TeamCardSix
|
||||||
|
title="فريقنا الطبي المتميز"
|
||||||
|
gridVariant="three-columns-all-equal-width"
|
||||||
|
animationType="slide-up"
|
||||||
|
members={[]}
|
||||||
|
/>
|
||||||
|
<FooterLogoEmphasis
|
||||||
|
columns={[{ items: [{ label: "الرئيسية", href: "/" }, { label: "من نحن", href: "/about" }] }]}
|
||||||
|
logoText="عيادات الجومان"
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
32
src/app/blog/page.tsx
Normal file
32
src/app/blog/page.tsx
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
"use client";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
|
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
|
||||||
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
|
|
||||||
|
export default function BlogPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
navItems={[
|
||||||
|
{ name: "الرئيسية", id: "/" },
|
||||||
|
{ name: "التقييمات", id: "/testimonials" },
|
||||||
|
{ name: "المدونة", id: "blog" }
|
||||||
|
]}
|
||||||
|
brandName="Aljoman Dental"
|
||||||
|
/>
|
||||||
|
<div className="pt-32 pb-20">
|
||||||
|
<BlogCardOne
|
||||||
|
title="مقالات صحة الأسنان"
|
||||||
|
description="نصائح وإرشادات للعناية بصحة فمك."
|
||||||
|
blogs={[]}
|
||||||
|
animationType="slide-up"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<FooterLogoEmphasis logoText="عيادات الجومان" columns={[]} />
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
24
src/app/contact/page.tsx
Normal file
24
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
"use client";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
|
||||||
|
export default function ContactPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
navItems={[{ name: "الرئيسية", id: "/" }, { name: "الأسئلة الشائعة", id: "/faq" }, { name: "حجز موعد", id: "/service-request" }, { name: "تواصل معنا", id: "/contact" }]}
|
||||||
|
brandName="Aljoman Dental"
|
||||||
|
/>
|
||||||
|
<ContactSplit
|
||||||
|
tag="اتصل بنا"
|
||||||
|
title="تواصل معنا مباشرة"
|
||||||
|
description="نحن دائماً جاهزون للرد على استفساراتكم عبر الهاتف أو البريد الإلكتروني."
|
||||||
|
background={{ variant: "gradient-bars" }}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
29
src/app/faq/page.tsx
Normal file
29
src/app/faq/page.tsx
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
"use client";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||||
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
|
||||||
|
export default function FaqPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
navItems={[{ name: "الرئيسية", id: "/" }, { name: "الأسئلة الشائعة", id: "/faq" }, { name: "حجز موعد", id: "/service-request" }, { name: "تواصل معنا", id: "/contact" }]}
|
||||||
|
brandName="Aljoman Dental"
|
||||||
|
/>
|
||||||
|
<FaqSplitMedia
|
||||||
|
title="أسئلة شائعة"
|
||||||
|
description="نحن هنا للإجابة على جميع استفساراتكم المتعلقة بصحة أسنانكم."
|
||||||
|
faqs={[
|
||||||
|
{ id: "1", title: "هل تبييض الأسنان آمن؟", content: "نعم، نستخدم تقنيات طبية آمنة لا تضر بالمينا." },
|
||||||
|
{ id: "2", title: "كيف أحجز موعداً؟", content: "يمكنكم الحجز بسهولة عبر صفحة حجز المواعيد." },
|
||||||
|
{ id: "3", title: "ما هي طرق الدفع؟", content: "نقبل جميع البطاقات الائتمانية والتحويلات البنكية." }
|
||||||
|
]}
|
||||||
|
faqsAnimation="slide-up"
|
||||||
|
mediaPosition="left"
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
312
src/app/page.tsx
312
src/app/page.tsx
@@ -15,45 +15,34 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar
|
|||||||
import { Award, Shield, Smile, Star } from "lucide-react";
|
import { Award, Shield, Smile, Star } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
|
const navLinks = [
|
||||||
|
{ name: "الرئيسية", id: "hero" },
|
||||||
|
{ name: "من نحن", id: "about" },
|
||||||
|
{ name: "خدماتنا", id: "features" },
|
||||||
|
{ name: "سياسة الخصوصية", id: "/privacy-policy" },
|
||||||
|
{ name: "تواصل معنا", id: "contact" },
|
||||||
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="hover-magnetic"
|
defaultButtonVariant="hover-magnetic"
|
||||||
defaultTextAnimation="entrance-slide"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="rounded"
|
borderRadius="pill"
|
||||||
contentWidth="medium"
|
contentWidth="medium"
|
||||||
sizing="largeSmallSizeLargeTitles"
|
sizing="mediumLargeSizeLargeTitles"
|
||||||
background="noiseDiagonalGradient"
|
background="aurora"
|
||||||
cardStyle="glass-elevated"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="primary-glow"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="layered"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="bold"
|
headingFontWeight="semibold"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={navLinks}
|
||||||
{
|
|
||||||
name: "الرئيسية",
|
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "من نحن",
|
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "خدماتنا",
|
|
||||||
id: "features",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "تواصل معنا",
|
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
brandName="Aljoman Dental"
|
brandName="Aljoman Dental"
|
||||||
button={{
|
button={{
|
||||||
text: "احجز موعداً",
|
text: "احجز موعداً", href: "#contact"}}
|
||||||
href: "#contact",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -62,82 +51,15 @@ export default function LandingPage() {
|
|||||||
title="أبتسامة ثقة تليق بك في عيادات الجومان"
|
title="أبتسامة ثقة تليق بك في عيادات الجومان"
|
||||||
description="نقدم خدمات طب الأسنان التجميلي والعلاجي بأعلى معايير الجودة العالمية، بلمسة من العناية الفائقة."
|
description="نقدم خدمات طب الأسنان التجميلي والعلاجي بأعلى معايير الجودة العالمية، بلمسة من العناية الفائقة."
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{ name: "أحمد العتيبي", handle: "@ahmed", testimonial: "تجربة استثنائية وعناية احترافية في الجومان، شكراً لكم على الابتسامة الجديدة.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/empty-stomatology-orthodontic-hospital-cabinet-with-nobody-it-equipped-with-modern-furniture-teet_482257-2882.jpg?_wi=1", imageAlt: "dental clinic interior modern" },
|
||||||
name: "أحمد العتيبي",
|
{ name: "سارة خالد", handle: "@sara", testimonial: "أفضل عيادة تعاملت معها، الأجهزة متطورة جداً والتعامل راقي.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/dentist-s-office-interior-with-modern-chair-special-dentisd-equipment-interior-stomatology-clinic_482257-11998.jpg?_wi=1", imageAlt: "dental clinic interior modern" }
|
||||||
handle: "@ahmed",
|
|
||||||
testimonial: "تجربة استثنائية وعناية احترافية في الجومان، شكراً لكم على الابتسامة الجديدة.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-stomatology-orthodontic-hospital-cabinet-with-nobody-it-equipped-with-modern-furniture-teet_482257-2882.jpg?_wi=1",
|
|
||||||
imageAlt: "dental clinic interior modern",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "سارة خالد",
|
|
||||||
handle: "@sara",
|
|
||||||
testimonial: "أفضل عيادة تعاملت معها، الأجهزة متطورة جداً والتعامل راقي.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/dentist-s-office-interior-with-modern-chair-special-dentisd-equipment-interior-stomatology-clinic_482257-11998.jpg?_wi=1",
|
|
||||||
imageAlt: "dental clinic interior modern",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "محمد علي",
|
|
||||||
handle: "@mohammad",
|
|
||||||
testimonial: "احترافية في العمل ودقة في المواعيد، أنصح بالزيارة.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/patient-pov-listening-explication-teeth-treatment-dentist-coverall-showing-x-ray-tablet-stomatology-specialist-wearing-protective-suit-against-infection-with-covid19-pointing-radiograph_482257-13149.jpg?_wi=1",
|
|
||||||
imageAlt: "dental clinic interior modern",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "فاطمة العمري",
|
|
||||||
handle: "@fatima",
|
|
||||||
testimonial: "نتائج مذهلة، لم أكن أتوقع أن تكون الابتسامة بهذا الجمال.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/man-dentist-s-appointment_1321-4592.jpg?_wi=1",
|
|
||||||
imageAlt: "dental clinic interior modern",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "خالد سعد",
|
|
||||||
handle: "@khalid",
|
|
||||||
testimonial: "خدمة ممتازة واحترافية عالية، تجربة تستحق التكرار.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/dentist-examining-man-teeth-with-dental-explorer-dental-mirror_651396-2613.jpg?_wi=1",
|
|
||||||
imageAlt: "dental clinic interior modern",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
buttons={[
|
|
||||||
{
|
|
||||||
text: "احجز موعداً",
|
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/empty-stomatology-orthodontic-hospital-cabinet-with-nobody-it-equipped-with-modern-furniture-teet_482257-2882.jpg?_wi=2"
|
|
||||||
avatars={[
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-dentist-patient-smiling_23-2148396176.jpg",
|
|
||||||
alt: "Portrait of dentist and patient smiling",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-smiling-man-sitting-chair-while-female-dentist-working-clinic_662251-2551.jpg",
|
|
||||||
alt: "Portrait of smiling man sitting on chair while female dentist working in clinic",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/beuatiful-female-dentist-posing-smiling-with-her-lovely-patient-laying-dental-chair-redviolet-dress_627829-9746.jpg",
|
|
||||||
alt: "Beuatiful female dentist posing and smiling with her lovely patient laying on a dental chair in redviolet dress",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/female-patient-smiling-while-talking-doctor_107420-65663.jpg",
|
|
||||||
alt: "Female patient smiling while talking to doctor",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/front-view-smiley-father-posing-home-with-thumbs-up_23-2148853977.jpg",
|
|
||||||
alt: "Front view of smiley father posing at home with thumbs up",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
|
buttons={[{ text: "احجز موعداً", href: "#contact" }]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<TestimonialAboutCard
|
<TestimonialAboutCard
|
||||||
useInvertedBackground={false}
|
|
||||||
tag="لماذا نحن؟"
|
tag="لماذا نحن؟"
|
||||||
title="التميز في طب الأسنان منذ عقود"
|
title="التميز في طب الأسنان منذ عقود"
|
||||||
description="عيادات الجومان ليست مجرد مركز طبي، بل تجربة متكاملة للعناية بصحة وجمال أسنانك."
|
description="عيادات الجومان ليست مجرد مركز طبي، بل تجربة متكاملة للعناية بصحة وجمال أسنانك."
|
||||||
@@ -151,26 +73,9 @@ export default function LandingPage() {
|
|||||||
<div id="features" data-section="features">
|
<div id="features" data-section="features">
|
||||||
<FeatureCardSix
|
<FeatureCardSix
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
|
||||||
features={[
|
features={[
|
||||||
{
|
{ title: "طب الأسنان التجميلي", description: "ابتسامة هوليود، تبييض الأسنان، وعدسات اللومينير.", imageSrc: "http://img.b2bpic.net/free-photo/patient-pov-listening-explication-teeth-treatment-dentist-coverall-showing-x-ray-tablet-stomatology-specialist-wearing-protective-suit-against-infection-with-covid19-pointing-radiograph_482257-13149.jpg?_wi=2" },
|
||||||
title: "طب الأسنان التجميلي",
|
{ title: "العلاج التحفظي", description: "علاج العصب، الحشوات التجميلية، وعلاج اللثة.", imageSrc: "http://img.b2bpic.net/free-photo/man-dentist-s-appointment_1321-4592.jpg?_wi=2" }
|
||||||
description: "ابتسامة هوليود، تبييض الأسنان، وعدسات اللومينير.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/patient-pov-listening-explication-teeth-treatment-dentist-coverall-showing-x-ray-tablet-stomatology-specialist-wearing-protective-suit-against-infection-with-covid19-pointing-radiograph_482257-13149.jpg?_wi=2",
|
|
||||||
imageAlt: "تجميل",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "العلاج التحفظي",
|
|
||||||
description: "علاج العصب، الحشوات التجميلية، وعلاج اللثة.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/man-dentist-s-appointment_1321-4592.jpg?_wi=2",
|
|
||||||
imageAlt: "علاج",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "تقويم الأسنان",
|
|
||||||
description: "تقويم شفاف ومعدني بأحدث الأنظمة العلاجية.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/dentist-examining-man-teeth-with-dental-explorer-dental-mirror_651396-2613.jpg?_wi=2",
|
|
||||||
imageAlt: "تقويم",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="خدماتنا المتميزة"
|
title="خدماتنا المتميزة"
|
||||||
description="نقدم حلولاً طبية متكاملة لابتسامة ساحرة."
|
description="نقدم حلولاً طبية متكاملة لابتسامة ساحرة."
|
||||||
@@ -182,44 +87,8 @@ export default function LandingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
useInvertedBackground={false}
|
|
||||||
products={[
|
products={[
|
||||||
{
|
{ id: "p1", name: "باقة التبييض الاحترافية", price: "٩٩٩ ر.س", imageSrc: "http://img.b2bpic.net/free-photo/equipment-dental-instruments-dentist-s-office-tools-close-up_8353-1677.jpg" }
|
||||||
id: "p1",
|
|
||||||
name: "باقة التبييض الاحترافية",
|
|
||||||
price: "٩٩٩ ر.س",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/equipment-dental-instruments-dentist-s-office-tools-close-up_8353-1677.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p2",
|
|
||||||
name: "تقويم الأسنان الشفاف",
|
|
||||||
price: "١٤٩٩٩ ر.س",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-dentist-instruments_23-2151042930.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p3",
|
|
||||||
name: "ابتسامة هوليود (فينيير)",
|
|
||||||
price: "١٩٩٩ ر.س",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/patient-pov-stomatologist-putting-oxigen-mask-before-tooth-surgery-sitting-stomatological-chair-doctor-nurse-working-modern-orthodontic-office-wearing-protection-mask-gloves_482257-13133.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p4",
|
|
||||||
name: "تنظيف الأسنان الشامل",
|
|
||||||
price: "٤٩٩ ر.س",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/stomatology-orthodontic-hospital-room-equipped-with-uv-lamp-teeth-whitening-device-stomatological-office-ready-professional-dentistry-procedure-ultraviolet-oral-dental-machine_482257-9416.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p5",
|
|
||||||
name: "علاج حساسية الأسنان",
|
|
||||||
price: "٢٩٩ ر.س",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/vials-medicine-arrangement-top-view_23-2149341595.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p6",
|
|
||||||
name: "توريد اللثة التجميلي",
|
|
||||||
price: "٧٩٩ ر.س",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/caucasian-preteen-girl-with-braces-her-teeth-looking-mirror_169016-39161.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="عروضنا الحصرية"
|
title="عروضنا الحصرية"
|
||||||
description="استكشف أحدث عروض الباقات التجميلية والعلاجية."
|
description="استكشف أحدث عروض الباقات التجميلية والعلاجية."
|
||||||
@@ -231,152 +100,29 @@ export default function LandingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
useInvertedBackground={false}
|
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{ id: "m1", value: "١٥,٠٠٠+", title: "مريض سعيد", description: "ثقتكم هي سر نجاحنا الدائم.", icon: Smile },
|
||||||
id: "m1",
|
{ id: "m2", value: "٢٠+", title: "سنة خبرة", description: "نقدم خبرة عقود لابتسامتك.", icon: Award }
|
||||||
value: "١٥,٠٠٠+",
|
|
||||||
title: "مريض سعيد",
|
|
||||||
description: "ثقتكم هي سر نجاحنا الدائم.",
|
|
||||||
icon: Smile,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "m2",
|
|
||||||
value: "٢٠+",
|
|
||||||
title: "سنة خبرة",
|
|
||||||
description: "نقدم خبرة عقود لابتسامتك.",
|
|
||||||
icon: Award,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "m3",
|
|
||||||
value: "٩٩%",
|
|
||||||
title: "معدل الرضا",
|
|
||||||
description: "معايير عالمية في كل خطوة.",
|
|
||||||
icon: Star,
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="أرقام تدل على تميزنا"
|
title="أرقام تدل على تميزنا"
|
||||||
description="نحن نفخر بما حققناه لآلاف المرضى."
|
description="نحن نفخر بما حققناه لآلاف المرضى."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
|
||||||
<TestimonialCardTwo
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="split"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
testimonials={[
|
|
||||||
{
|
|
||||||
id: "t1",
|
|
||||||
name: "سارة",
|
|
||||||
role: "مراجعة",
|
|
||||||
testimonial: "طاقم عمل رائع وخدمة احترافية جداً.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/male-professional-dentist-with-gloves-mask-discuss-what-treatment-will-look-like-patient-s-teeth_158595-7630.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "t2",
|
|
||||||
name: "أحمد",
|
|
||||||
role: "مراجع",
|
|
||||||
testimonial: "نتيجة مبهرة وتفاصيل دقيقة في المعالجة.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-happy-dentist_23-2148396150.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "t3",
|
|
||||||
name: "ليلى",
|
|
||||||
role: "مراجعة",
|
|
||||||
testimonial: "لن أتردد في العودة مرة أخرى، شكراً جزيلاً.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-female-patient-bed-physiotherapy-center_1139-1121.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "t4",
|
|
||||||
name: "عمر",
|
|
||||||
role: "مراجع",
|
|
||||||
testimonial: "تجربة لا تنسى، عيادة متطورة بكل المقاييس.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-showing-her-thumbs-up_1301-1128.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "t5",
|
|
||||||
name: "نورة",
|
|
||||||
role: "مراجعة",
|
|
||||||
testimonial: "الابتسامة التي حلمت بها تحققت هنا.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-stylish-laughing-model-colorful-casual-summer-clothes-with-natural-makeup_158538-11753.jpg",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
title="ماذا يقول مرضانا؟"
|
|
||||||
description="رأيكم هو دافعنا للاستمرار في تقديم الأفضل."
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
|
||||||
<FaqSplitText
|
|
||||||
useInvertedBackground={false}
|
|
||||||
faqs={[
|
|
||||||
{
|
|
||||||
id: "f1",
|
|
||||||
title: "هل خدمات تبييض الأسنان آمنة؟",
|
|
||||||
content: "نعم، نستخدم تقنيات حديثة ومعتمدة تضمن سلامة المينا واللثة.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "f2",
|
|
||||||
title: "كم يستغرق تركيب تقويم الأسنان؟",
|
|
||||||
content: "تختلف المدة حسب الحالة، ولكن عادة ما تتراوح بين ١٢ إلى ٢٤ شهراً.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "f3",
|
|
||||||
title: "هل يوجد ضمان على ابتسامة هوليود؟",
|
|
||||||
content: "نقدم ضماناً على جودة المواد المستخدمة والعمليات التجميلية التي نقوم بها.",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
sideTitle="أسئلة شائعة"
|
|
||||||
faqsAnimation="slide-up"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplit
|
<ContactSplit
|
||||||
useInvertedBackground={false}
|
|
||||||
background={{
|
|
||||||
variant: "gradient-bars",
|
|
||||||
}}
|
|
||||||
tag="تواصل معنا"
|
tag="تواصل معنا"
|
||||||
title="ابدأ رحلة ابتسامتك اليوم"
|
title="ابدأ رحلة ابتسامتك اليوم"
|
||||||
description="احجز استشارتك المجانية مع أطباء الجومان المتخصصين."
|
description="احجز استشارتك المجانية. العنوان: طريق المدينة المنورة، حي الفيصلية، جدة 23442، المملكة العربية السعودية."
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/nobody-empty-waiting-room-lobby-with-desktop-reception-helping-patients-with-medical-insurance-attend-checkup-visit-appointment-waiting-area-with-counter-hospital_482257-47691.jpg"
|
background={{ variant: "gradient-bars" }}
|
||||||
inputPlaceholder="أدخل بريدك الإلكتروني"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{ items: [{ label: "من نحن", href: "#about" }, { label: "خدماتنا", href: "#features" }, { label: "سياسة الخصوصية", href: "/privacy-policy" }] },
|
||||||
items: [
|
{ items: [{ label: "احجز موعداً", href: "#contact" }, { label: "طريق المدينة المنورة، حي الفيصلية، جدة 23442، المملكة العربية السعودية", href: "#" }] }
|
||||||
{
|
|
||||||
label: "من نحن",
|
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "خدماتنا",
|
|
||||||
href: "#features",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "سياسة الخصوصية",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "احجز موعداً",
|
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "موقع العيادة",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
logoText="عيادات الجومان"
|
logoText="عيادات الجومان"
|
||||||
/>
|
/>
|
||||||
@@ -384,4 +130,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
39
src/app/portfolio/page.tsx
Normal file
39
src/app/portfolio/page.tsx
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
|
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||||
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
|
|
||||||
|
export default function PortfolioPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider>
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
navItems={[
|
||||||
|
{ name: "الرئيسية", id: "/" },
|
||||||
|
{ name: "الخدمات", id: "/services" },
|
||||||
|
{ name: "المعرض", id: "/portfolio" },
|
||||||
|
{ name: "تواصل معنا", id: "/#contact" }
|
||||||
|
]}
|
||||||
|
brandName="Aljoman Dental"
|
||||||
|
/>
|
||||||
|
<div className="pt-32">
|
||||||
|
<TestimonialCardOne
|
||||||
|
title="حالات سريرية متميزة"
|
||||||
|
description="شاهد نتائج تحول ابتسامة مرضانا بعد العناية في عيادتنا."
|
||||||
|
textboxLayout="split"
|
||||||
|
gridVariant="uniform-all-items-equal"
|
||||||
|
animationType="slide-up"
|
||||||
|
testimonials={[
|
||||||
|
{ id: "c1", name: "تبييض الأسنان", role: "قبل وبعد", company: "نتائج فورية", imageSrc: "http://img.b2bpic.net/free-photo/close-up-dentist-instruments_23-2151042930.jpg" },
|
||||||
|
{ id: "c2", name: "فينير التجميلي", role: "قبل وبعد", company: "ابتسامة مشرقة", imageSrc: "http://img.b2bpic.net/free-photo/patient-pov-stomatologist-putting-oxigen-mask-before-tooth-surgery-sitting-stomatological-chair-doctor-nurse-working-modern-orthodontic-office-wearing-protection-mask-gloves_482257-13133.jpg" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<FooterLogoEmphasis
|
||||||
|
columns={[{ items: [{ label: "الرئيسية", href: "/" }, { label: "الخدمات", href: "/services" }, { label: "المعرض", href: "/portfolio" }] }]}
|
||||||
|
logoText="عيادات الجومان"
|
||||||
|
/>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
51
src/app/privacy-policy/page.tsx
Normal file
51
src/app/privacy-policy/page.tsx
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
|
import LegalSection from '@/components/legal/LegalSection';
|
||||||
|
|
||||||
|
export default function PrivacyPolicyPage() {
|
||||||
|
const navLinks = [
|
||||||
|
{ name: "الرئيسية", id: "/" },
|
||||||
|
{ name: "من نحن", id: "/#about" },
|
||||||
|
{ name: "خدماتنا", id: "/#features" },
|
||||||
|
{ name: "سياسة الخصوصية", id: "/privacy-policy" },
|
||||||
|
{ name: "تواصل معنا", id: "/#contact" },
|
||||||
|
];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="hover-magnetic"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="mediumLargeSizeLargeTitles"
|
||||||
|
background="aurora"
|
||||||
|
cardStyle="glass-elevated"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingInline navItems={navLinks} brandName="Aljoman Dental" />
|
||||||
|
<LegalSection
|
||||||
|
layout="page"
|
||||||
|
title="سياسة الخصوصية"
|
||||||
|
sections={[
|
||||||
|
{
|
||||||
|
heading: "جمع المعلومات", content: { type: "paragraph", text: "نحن في عيادات الجومان نحرص على حماية بياناتكم الشخصية ونجمعها فقط لغرض تقديم أفضل رعاية طبية." }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
heading: "استخدام البيانات", content: { type: "list", items: ["تحسين تجربة العلاج", "المراسلات الطبية", "المواعيد"] }
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
<FooterLogoEmphasis
|
||||||
|
columns={[
|
||||||
|
{ items: [{ label: "الرئيسية", href: "/" }, { label: "سياسة الخصوصية", href: "/privacy-policy" }] },
|
||||||
|
{ items: [{ label: "طريق المدينة المنورة، حي الفيصلية، جدة 23442، المملكة العربية السعودية", href: "#" }] }
|
||||||
|
]}
|
||||||
|
logoText="عيادات الجومان"
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
24
src/app/service-request/page.tsx
Normal file
24
src/app/service-request/page.tsx
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
"use client";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
|
||||||
|
export default function ServiceRequestPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
navItems={[{ name: "الرئيسية", id: "/" }, { name: "الأسئلة الشائعة", id: "/faq" }, { name: "حجز موعد", id: "/service-request" }, { name: "تواصل معنا", id: "/contact" }]}
|
||||||
|
brandName="Aljoman Dental"
|
||||||
|
/>
|
||||||
|
<ContactSplit
|
||||||
|
tag="حجز موعد"
|
||||||
|
title="احجز موعدك الآن"
|
||||||
|
description="قم بتعبئة النموذج أدناه وسنتواصل معك لتأكيد حجزك."
|
||||||
|
background={{ variant: "sparkles-gradient" }}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
38
src/app/services/page.tsx
Normal file
38
src/app/services/page.tsx
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
|
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
|
||||||
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
|
|
||||||
|
export default function ServicesPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider>
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
navItems={[
|
||||||
|
{ name: "الرئيسية", id: "/" },
|
||||||
|
{ name: "الخدمات", id: "/services" },
|
||||||
|
{ name: "المعرض", id: "/portfolio" },
|
||||||
|
{ name: "تواصل معنا", id: "/#contact" }
|
||||||
|
]}
|
||||||
|
brandName="Aljoman Dental"
|
||||||
|
/>
|
||||||
|
<div className="pt-32">
|
||||||
|
<FeatureCardSix
|
||||||
|
title="خدماتنا العلاجية والتجميلية"
|
||||||
|
description="نقدم مجموعة متكاملة من الحلول الطبية للعناية بأسنانك."
|
||||||
|
textboxLayout="split"
|
||||||
|
features={[
|
||||||
|
{ title: "تجميل الأسنان", description: "ابتسامة هوليود، فينير، وتبييض متطور.", imageSrc: "http://img.b2bpic.net/free-photo/stomatology-orthodontic-hospital-room-equipped-with-uv-lamp-teeth-whitening-device-stomatological-office-ready-professional-dentistry-procedure-ultraviolet-oral-dental-machine_482257-9416.jpg" },
|
||||||
|
{ title: "التقويم", description: "حلول التقويم الشفاف والمعدني لتصحيح التموضع.", imageSrc: "http://img.b2bpic.net/free-photo/caucasian-preteen-girl-with-braces-her-teeth-looking-mirror_169016-39161.jpg" },
|
||||||
|
{ title: "علاجات اللثة", description: "عناية متخصصة بصحة أنسجة الفم.", imageSrc: "http://img.b2bpic.net/free-photo/vials-medicine-arrangement-top-view_23-2149341595.jpg" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<FooterLogoEmphasis
|
||||||
|
columns={[{ items: [{ label: "الرئيسية", href: "/" }, { label: "الخدمات", href: "/services" }, { label: "المعرض", href: "/portfolio" }] }]}
|
||||||
|
logoText="عيادات الجومان"
|
||||||
|
/>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #f5faff;
|
--background: #fbfaff;
|
||||||
--card: #f1f8ff;
|
--card: #ffffff;
|
||||||
--foreground: #001122;
|
--foreground: #0f0022;
|
||||||
--primary-cta: #15479c;
|
--primary-cta: #8b5cf6;
|
||||||
--primary-cta-text: #f5faff;
|
--primary-cta-text: #f5faff;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #ffffff;
|
||||||
--secondary-cta-text: #001122;
|
--secondary-cta-text: #001122;
|
||||||
--accent: #a8cce8;
|
--accent: #d8cef5;
|
||||||
--background-accent: #7ba3cf;
|
--background-accent: #c4a8f9;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
32
src/app/testimonials/page.tsx
Normal file
32
src/app/testimonials/page.tsx
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
"use client";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
|
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||||
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
|
|
||||||
|
export default function TestimonialsPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
navItems={[
|
||||||
|
{ name: "الرئيسية", id: "/" },
|
||||||
|
{ name: "التقييمات", id: "testimonials" },
|
||||||
|
{ name: "المدونة", id: "/blog" }
|
||||||
|
]}
|
||||||
|
brandName="Aljoman Dental"
|
||||||
|
/>
|
||||||
|
<div className="pt-32 pb-20">
|
||||||
|
<TestimonialCardTwo
|
||||||
|
title="آراء مرضانا"
|
||||||
|
description="نفخر بثقة عملائنا في خدماتنا."
|
||||||
|
testimonials={[]}
|
||||||
|
animationType="slide-up"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<FooterLogoEmphasis logoText="عيادات الجومان" columns={[]} />
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user