Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d2171af73f | |||
| ced8800cc5 | |||
| d06ba2068f | |||
| b4054d4697 | |||
| 022c5a9e0d | |||
| e53b919cef | |||
| 7d3332f32c | |||
| 993262becf | |||
| 64b1442fc2 | |||
| f840528d50 | |||
| 940e839ff6 |
@@ -1,39 +1,29 @@
|
||||
"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"
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="aurora"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||
brandName="Company"
|
||||
button={{ text: "Get Started", href: "#" }}
|
||||
/>
|
||||
<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>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -1,32 +1,29 @@
|
||||
"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"
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="aurora"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||
brandName="Company"
|
||||
button={{ text: "Get Started", href: "#" }}
|
||||
/>
|
||||
<div className="pt-32 pb-20">
|
||||
<BlogCardOne
|
||||
title="مقالات صحة الأسنان"
|
||||
description="نصائح وإرشادات للعناية بصحة فمك."
|
||||
blogs={[]}
|
||||
animationType="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<FooterLogoEmphasis logoText="عيادات الجومان" columns={[]} />
|
||||
</ReactLenis>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -1,24 +1,29 @@
|
||||
"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"
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="aurora"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||
brandName="Company"
|
||||
button={{ text: "Get Started", href: "#" }}
|
||||
/>
|
||||
<ContactSplit
|
||||
tag="اتصل بنا"
|
||||
title="تواصل معنا مباشرة"
|
||||
description="نحن دائماً جاهزون للرد على استفساراتكم عبر الهاتف أو البريد الإلكتروني."
|
||||
background={{ variant: "gradient-bars" }}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -1,29 +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"
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="aurora"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||
brandName="Company"
|
||||
button={{ text: "Get Started", href: "#" }}
|
||||
/>
|
||||
<FaqSplitMedia
|
||||
title="أسئلة شائعة"
|
||||
description="نحن هنا للإجابة على جميع استفساراتكم المتعلقة بصحة أسنانكم."
|
||||
faqs={[
|
||||
{ id: "1", title: "هل تبييض الأسنان آمن؟", content: "نعم، نستخدم تقنيات طبية آمنة لا تضر بالمينا." },
|
||||
{ id: "2", title: "كيف أحجز موعداً؟", content: "يمكنكم الحجز بسهولة عبر صفحة حجز المواعيد." },
|
||||
{ id: "3", title: "ما هي طرق الدفع؟", content: "نقبل جميع البطاقات الائتمانية والتحويلات البنكية." }
|
||||
]}
|
||||
faqsAnimation="slide-up"
|
||||
mediaPosition="left"
|
||||
/>
|
||||
</ReactLenis>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -3,7 +3,6 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
|
||||
@@ -11,15 +10,13 @@ import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||
import { Award, Shield, Smile, Star } from "lucide-react";
|
||||
import { Award, Shield, Smile } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
const navLinks = [
|
||||
{ name: "الرئيسية", id: "hero" },
|
||||
{ name: "من نحن", id: "about" },
|
||||
{ name: "خدماتنا", id: "features" },
|
||||
{ name: "سياسة الخصوصية", id: "/privacy-policy" },
|
||||
{ name: "تواصل معنا", id: "contact" },
|
||||
];
|
||||
|
||||
@@ -41,32 +38,30 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={navLinks}
|
||||
brandName="Aljoman Dental"
|
||||
button={{
|
||||
text: "احجز موعداً", href: "#contact"}}
|
||||
button={{ text: "احجز موعداً", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlayTestimonial
|
||||
title="أبتسامة ثقة تليق بك في عيادات الجومان"
|
||||
description="نقدم خدمات طب الأسنان التجميلي والعلاجي بأعلى معايير الجودة العالمية، بلمسة من العناية الفائقة."
|
||||
description="نقدم خدمات طب الأسنان التجميلي والعلاجي بأعلى معايير الجودة العالمية."
|
||||
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: "سارة خالد", 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: "@ahmed", testimonial: "تجربة استثنائية وعناية احترافية.", rating: 5 },
|
||||
{ name: "سارة خالد", handle: "@sara", testimonial: "أفضل عيادة تعاملت معها.", rating: 5 }
|
||||
]}
|
||||
buttons={[{ text: "احجز موعداً", href: "#contact" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TestimonialAboutCard
|
||||
tag="لماذا نحن؟"
|
||||
title="التميز في طب الأسنان منذ عقود"
|
||||
description="عيادات الجومان ليست مجرد مركز طبي، بل تجربة متكاملة للعناية بصحة وجمال أسنانك."
|
||||
subdescription="نستخدم أحدث التقنيات الرقمية لضمان أدق النتائج وأكثرها راحة للمريض."
|
||||
title="التميز في طب الأسنان"
|
||||
description="عيادات الجومان ليست مجرد مركز طبي."
|
||||
subdescription="نستخدم أحدث التقنيات الرقمية."
|
||||
icon={Shield}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/dentist-s-office-interior-with-modern-chair-special-dentisd-equipment-interior-stomatology-clinic_482257-11998.jpg?_wi=2"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -74,11 +69,12 @@ export default function LandingPage() {
|
||||
<FeatureCardSix
|
||||
textboxLayout="split"
|
||||
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: "العلاج التحفظي", description: "علاج العصب، الحشوات التجميلية، وعلاج اللثة.", imageSrc: "http://img.b2bpic.net/free-photo/man-dentist-s-appointment_1321-4592.jpg?_wi=2" }
|
||||
{ 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: "العلاج التحفظي", description: "علاج العصب، الحشوات التجميلية.", imageSrc: "http://img.b2bpic.net/free-photo/man-dentist-s-appointment_1321-4592.jpg?_wi=2" }
|
||||
]}
|
||||
title="خدماتنا المتميزة"
|
||||
description="نقدم حلولاً طبية متكاملة لابتسامة ساحرة."
|
||||
description="حلول طبية متكاملة."
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -86,12 +82,15 @@ export default function LandingPage() {
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
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/equipment-dental-instruments-dentist-s-office-tools-close-up_8353-1677.jpg" },
|
||||
{ id: "p3", name: "استشارة دورية", price: "٣٠٠ ر.س", imageSrc: "http://img.b2bpic.net/free-photo/equipment-dental-instruments-dentist-s-office-tools-close-up_8353-1677.jpg" }
|
||||
]}
|
||||
title="عروضنا الحصرية"
|
||||
description="استكشف أحدث عروض الباقات التجميلية والعلاجية."
|
||||
description="استكشف عروضنا."
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -101,28 +100,30 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
metrics={[
|
||||
{ id: "m1", value: "١٥,٠٠٠+", title: "مريض سعيد", description: "ثقتكم هي سر نجاحنا الدائم.", icon: Smile },
|
||||
{ id: "m2", value: "٢٠+", title: "سنة خبرة", description: "نقدم خبرة عقود لابتسامتك.", icon: Award }
|
||||
{ id: "m1", value: "١٥,٠٠٠+", title: "مريض سعيد", description: "ثقتكم سر نجاحنا.", icon: Smile },
|
||||
{ id: "m2", value: "٢٠+", title: "سنة خبرة", description: "خبرة عقود لابتسامتك.", icon: Award }
|
||||
]}
|
||||
title="أرقام تدل على تميزنا"
|
||||
description="نحن نفخر بما حققناه لآلاف المرضى."
|
||||
title="أرقام تميزنا"
|
||||
description="نفخر بما حققناه."
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="تواصل معنا"
|
||||
title="ابدأ رحلة ابتسامتك اليوم"
|
||||
description="احجز استشارتك المجانية. العنوان: طريق المدينة المنورة، حي الفيصلية، جدة 23442، المملكة العربية السعودية."
|
||||
title="ابدأ رحلة ابتسامتك"
|
||||
description="احجز استشارتك المجانية."
|
||||
background={{ variant: "gradient-bars" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{ items: [{ label: "من نحن", href: "#about" }, { label: "خدماتنا", href: "#features" }, { label: "سياسة الخصوصية", href: "/privacy-policy" }] },
|
||||
{ items: [{ label: "احجز موعداً", href: "#contact" }, { label: "طريق المدينة المنورة، حي الفيصلية، جدة 23442، المملكة العربية السعودية", href: "#" }] }
|
||||
{ items: [{ label: "من نحن", href: "#about" }, { label: "خدماتنا", href: "#features" }] },
|
||||
{ items: [{ label: "احجز موعداً", href: "#contact" }] }
|
||||
]}
|
||||
logoText="عيادات الجومان"
|
||||
/>
|
||||
|
||||
@@ -2,38 +2,28 @@
|
||||
|
||||
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" }
|
||||
]}
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="aurora"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||
brandName="Company"
|
||||
button={{ text: "Get Started", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
<FooterLogoEmphasis
|
||||
columns={[{ items: [{ label: "الرئيسية", href: "/" }, { label: "الخدمات", href: "/services" }, { label: "المعرض", href: "/portfolio" }] }]}
|
||||
logoText="عيادات الجومان"
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -1,51 +1,29 @@
|
||||
"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" },
|
||||
];
|
||||
|
||||
export default function PrivacyPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="aurora"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingInline navItems={navLinks} brandName="Aljoman Dental" />
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="سياسة الخصوصية"
|
||||
sections={[
|
||||
{
|
||||
heading: "جمع المعلومات", content: { type: "paragraph", text: "نحن في عيادات الجومان نحرص على حماية بياناتكم الشخصية ونجمعها فقط لغرض تقديم أفضل رعاية طبية." }
|
||||
},
|
||||
{
|
||||
heading: "استخدام البيانات", content: { type: "list", items: ["تحسين تجربة العلاج", "المراسلات الطبية", "المواعيد"] }
|
||||
}
|
||||
]}
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||
brandName="Company"
|
||||
button={{ text: "Get Started", href: "#" }}
|
||||
/>
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{ items: [{ label: "الرئيسية", href: "/" }, { label: "سياسة الخصوصية", href: "/privacy-policy" }] },
|
||||
{ items: [{ label: "طريق المدينة المنورة، حي الفيصلية، جدة 23442، المملكة العربية السعودية", href: "#" }] }
|
||||
]}
|
||||
logoText="عيادات الجومان"
|
||||
/>
|
||||
</ReactLenis>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -1,24 +1,29 @@
|
||||
"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"
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="aurora"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||
brandName="Company"
|
||||
button={{ text: "Get Started", href: "#" }}
|
||||
/>
|
||||
<ContactSplit
|
||||
tag="حجز موعد"
|
||||
title="احجز موعدك الآن"
|
||||
description="قم بتعبئة النموذج أدناه وسنتواصل معك لتأكيد حجزك."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -2,37 +2,28 @@
|
||||
|
||||
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" }
|
||||
]}
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="aurora"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||
brandName="Company"
|
||||
button={{ text: "Get Started", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
<FooterLogoEmphasis
|
||||
columns={[{ items: [{ label: "الرئيسية", href: "/" }, { label: "الخدمات", href: "/services" }, { label: "المعرض", href: "/portfolio" }] }]}
|
||||
logoText="عيادات الجومان"
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -1,32 +1,29 @@
|
||||
"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"
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="aurora"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||
brandName="Company"
|
||||
button={{ text: "Get Started", href: "#" }}
|
||||
/>
|
||||
<div className="pt-32 pb-20">
|
||||
<TestimonialCardTwo
|
||||
title="آراء مرضانا"
|
||||
description="نفخر بثقة عملائنا في خدماتنا."
|
||||
testimonials={[]}
|
||||
animationType="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<FooterLogoEmphasis logoText="عيادات الجومان" columns={[]} />
|
||||
</ReactLenis>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user