Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 43d13841fd | |||
| 458b7db098 | |||
| 8e487e12ee | |||
| a2cc10dca2 | |||
| 11d1c05e45 | |||
| a4b6034b5c | |||
| cc46ea810b | |||
| 4ddf763b6a | |||
| 90a9ccfe9f | |||
| 13c35faf89 |
@@ -1,39 +1,18 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
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() {
|
export default function AboutPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider>
|
<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>
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||||
{ name: "الرئيسية", id: "/" },
|
|
||||||
{ name: "من نحن", id: "/about" },
|
|
||||||
{ name: "خدماتنا", id: "/" },
|
|
||||||
{ name: "تواصل معنا", id: "/" },
|
|
||||||
]}
|
|
||||||
brandName="Aljoman Dental"
|
brandName="Aljoman Dental"
|
||||||
|
button={{ text: "Contact", href: "/contact" }}
|
||||||
/>
|
/>
|
||||||
<InlineImageSplitTextAbout
|
</div>
|
||||||
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>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -1,32 +1,18 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
|
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
|
||||||
|
|
||||||
export default function BlogPage() {
|
export default function BlogPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider>
|
<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>
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||||
{ name: "الرئيسية", id: "/" },
|
|
||||||
{ name: "التقييمات", id: "/testimonials" },
|
|
||||||
{ name: "المدونة", id: "blog" }
|
|
||||||
]}
|
|
||||||
brandName="Aljoman Dental"
|
brandName="Aljoman Dental"
|
||||||
|
button={{ text: "Contact", href: "/contact" }}
|
||||||
/>
|
/>
|
||||||
<div className="pt-32 pb-20">
|
</div>
|
||||||
<BlogCardOne
|
|
||||||
title="مقالات صحة الأسنان"
|
|
||||||
description="نصائح وإرشادات للعناية بصحة فمك."
|
|
||||||
blogs={[]}
|
|
||||||
animationType="slide-up"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<FooterLogoEmphasis logoText="عيادات الجومان" columns={[]} />
|
|
||||||
</ReactLenis>
|
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -1,24 +1,18 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import ReactLenis from "lenis/react";
|
|
||||||
|
|
||||||
export default function ContactPage() {
|
export default function ContactPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider>
|
<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>
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[{ name: "الرئيسية", id: "/" }, { name: "الأسئلة الشائعة", id: "/faq" }, { name: "حجز موعد", id: "/service-request" }, { name: "تواصل معنا", id: "/contact" }]}
|
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||||
brandName="Aljoman Dental"
|
brandName="Aljoman Dental"
|
||||||
|
button={{ text: "Contact", href: "/contact" }}
|
||||||
/>
|
/>
|
||||||
<ContactSplit
|
</div>
|
||||||
tag="اتصل بنا"
|
|
||||||
title="تواصل معنا مباشرة"
|
|
||||||
description="نحن دائماً جاهزون للرد على استفساراتكم عبر الهاتف أو البريد الإلكتروني."
|
|
||||||
background={{ variant: "gradient-bars" }}
|
|
||||||
/>
|
|
||||||
</ReactLenis>
|
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -1,29 +1,18 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import ReactLenis from "lenis/react";
|
|
||||||
|
|
||||||
export default function FaqPage() {
|
export default function FaqPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider>
|
<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>
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[{ name: "الرئيسية", id: "/" }, { name: "الأسئلة الشائعة", id: "/faq" }, { name: "حجز موعد", id: "/service-request" }, { name: "تواصل معنا", id: "/contact" }]}
|
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||||
brandName="Aljoman Dental"
|
brandName="Aljoman Dental"
|
||||||
|
button={{ text: "Contact", href: "/contact" }}
|
||||||
/>
|
/>
|
||||||
<FaqSplitMedia
|
</div>
|
||||||
title="أسئلة شائعة"
|
|
||||||
description="نحن هنا للإجابة على جميع استفساراتكم المتعلقة بصحة أسنانكم."
|
|
||||||
faqs={[
|
|
||||||
{ id: "1", title: "هل تبييض الأسنان آمن؟", content: "نعم، نستخدم تقنيات طبية آمنة لا تضر بالمينا." },
|
|
||||||
{ id: "2", title: "كيف أحجز موعداً؟", content: "يمكنكم الحجز بسهولة عبر صفحة حجز المواعيد." },
|
|
||||||
{ id: "3", title: "ما هي طرق الدفع؟", content: "نقبل جميع البطاقات الائتمانية والتحويلات البنكية." }
|
|
||||||
]}
|
|
||||||
faqsAnimation="slide-up"
|
|
||||||
mediaPosition="left"
|
|
||||||
/>
|
|
||||||
</ReactLenis>
|
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
172
src/app/page.tsx
172
src/app/page.tsx
@@ -3,7 +3,6 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
|
||||||
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
|
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
|
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 NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
import { Award, Shield, Smile } from "lucide-react";
|
||||||
import { Award, Shield, Smile, Star } from "lucide-react";
|
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
const navLinks = [
|
const navLinks = [
|
||||||
{ name: "الرئيسية", id: "hero" },
|
{ name: "الرئيسية", id: "hero" },
|
||||||
{ name: "من نحن", id: "about" },
|
{ name: "من نحن", id: "about" },
|
||||||
{ name: "خدماتنا", id: "features" },
|
{ name: "خدماتنا", id: "features" },
|
||||||
{ name: "سياسة الخصوصية", id: "/privacy-policy" },
|
|
||||||
{ name: "تواصل معنا", id: "contact" },
|
{ name: "تواصل معنا", id: "contact" },
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -37,97 +34,96 @@ export default function LandingPage() {
|
|||||||
headingFontWeight="semibold"
|
headingFontWeight="semibold"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={navLinks}
|
navItems={navLinks}
|
||||||
brandName="Aljoman Dental"
|
brandName="Aljoman Dental"
|
||||||
button={{
|
button={{ text: "احجز موعداً", href: "#contact" }}
|
||||||
text: "احجز موعداً", href: "#contact"}}
|
/>
|
||||||
/>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroOverlayTestimonial
|
<HeroOverlayTestimonial
|
||||||
title="أبتسامة ثقة تليق بك في عيادات الجومان"
|
title="أبتسامة ثقة تليق بك"
|
||||||
description="نقدم خدمات طب الأسنان التجميلي والعلاجي بأعلى معايير الجودة العالمية، بلمسة من العناية الفائقة."
|
description="خدمات طب أسنان تجميلية وعلاجية عالية الجودة."
|
||||||
testimonials={[
|
testimonials={[{ name: "أحمد", handle: "@ahmed", testimonial: "تجربة استثنائية.", rating: 5 }]}
|
||||||
{ 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" },
|
buttons={[{ text: "احجز الآن", href: "#contact" }]}
|
||||||
{ 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" }
|
/>
|
||||||
]}
|
</div>
|
||||||
buttons={[{ text: "احجز موعداً", href: "#contact" }]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<TestimonialAboutCard
|
<TestimonialAboutCard
|
||||||
tag="لماذا نحن؟"
|
tag="لماذا نحن؟"
|
||||||
title="التميز في طب الأسنان منذ عقود"
|
title="التميز في طب الأسنان"
|
||||||
description="عيادات الجومان ليست مجرد مركز طبي، بل تجربة متكاملة للعناية بصحة وجمال أسنانك."
|
description="عيادات الجومان تقدم تجربة رعاية متكاملة."
|
||||||
subdescription="نستخدم أحدث التقنيات الرقمية لضمان أدق النتائج وأكثرها راحة للمريض."
|
subdescription="أحدث التقنيات الرقمية."
|
||||||
icon={Shield}
|
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"
|
imageSrc="https://img.b2bpic.net/free-photo/dentist-s-office-interior-with-modern-chair-special-dentisd-equipment-interior-stomatology-clinic_482257-11998.jpg"
|
||||||
mediaAnimation="slide-up"
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="features" data-section="features">
|
<div id="features" data-section="features">
|
||||||
<FeatureCardSix
|
<FeatureCardSix
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
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: "التجميل", description: "ابتسامة هوليود", imageSrc: "https://img.b2bpic.net/free-photo/vials-medicine-arrangement-top-view_23-2149341595.jpg" },
|
||||||
{ title: "العلاج التحفظي", description: "علاج العصب، الحشوات التجميلية، وعلاج اللثة.", imageSrc: "http://img.b2bpic.net/free-photo/man-dentist-s-appointment_1321-4592.jpg?_wi=2" }
|
{ title: "العلاج", description: "علاج العصب", imageSrc: "https://img.b2bpic.net/free-photo/man-dentist-s-appointment_1321-4592.jpg" }
|
||||||
]}
|
]}
|
||||||
title="خدماتنا المتميزة"
|
title="خدماتنا"
|
||||||
description="نقدم حلولاً طبية متكاملة لابتسامة ساحرة."
|
description="نقدم حلولاً متكاملة."
|
||||||
/>
|
useInvertedBackground={false}
|
||||||
</div>
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="products" data-section="products">
|
<div id="products" data-section="products">
|
||||||
<ProductCardOne
|
<ProductCardOne
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
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: "https://img.b2bpic.net/free-photo/equipment-dental-instruments-dentist-s-office-tools-close-up_8353-1677.jpg" },
|
||||||
]}
|
{ id: "p2", name: "فينير", price: "١٥٠٠ ر.س", imageSrc: "https://img.b2bpic.net/free-photo/equipment-dental-instruments-dentist-s-office-toolsclose-up_8353-1677.jpg" },
|
||||||
title="عروضنا الحصرية"
|
{ id: "p3", name: "تقويم", price: "٥٠٠٠ ر.س", imageSrc: "https://img.b2bpic.net/free-photo/equipment-dental-instruments-dentist-s-office-toolsclose-up_8353-1677.jpg" }
|
||||||
description="استكشف أحدث عروض الباقات التجميلية والعلاجية."
|
]}
|
||||||
/>
|
title="عروضنا"
|
||||||
</div>
|
description="اكتشف باقاتنا."
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="metrics" data-section="metrics">
|
<div id="metrics" data-section="metrics">
|
||||||
<MetricCardOne
|
<MetricCardOne
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
metrics={[
|
metrics={[
|
||||||
{ id: "m1", value: "١٥,٠٠٠+", title: "مريض سعيد", description: "ثقتكم هي سر نجاحنا الدائم.", icon: Smile },
|
{ id: "m1", value: "١٥٠٠٠+", title: "مريض سعيد", description: "ثقتكم تهمنا", icon: Smile },
|
||||||
{ id: "m2", value: "٢٠+", title: "سنة خبرة", description: "نقدم خبرة عقود لابتسامتك.", icon: Award }
|
{ id: "m2", value: "٢٠+", title: "سنة خبرة", description: "خبرة طويلة", icon: Award }
|
||||||
]}
|
]}
|
||||||
title="أرقام تدل على تميزنا"
|
title="أرقامنا"
|
||||||
description="نحن نفخر بما حققناه لآلاف المرضى."
|
description="نحن نفخر بما قدمناه."
|
||||||
/>
|
useInvertedBackground={false}
|
||||||
</div>
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplit
|
<ContactSplit
|
||||||
tag="تواصل معنا"
|
tag="تواصل"
|
||||||
title="ابدأ رحلة ابتسامتك اليوم"
|
title="ابدأ رحلتك"
|
||||||
description="احجز استشارتك المجانية. العنوان: طريق المدينة المنورة، حي الفيصلية، جدة 23442، المملكة العربية السعودية."
|
description="احجز استشارتك اليوم."
|
||||||
background={{ variant: "gradient-bars" }}
|
background={{ variant: "gradient-bars" }}
|
||||||
/>
|
useInvertedBackground={false}
|
||||||
</div>
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
columns={[
|
columns={[{ items: [{ label: "الرئيسية", href: "#" }] }]}
|
||||||
{ items: [{ label: "من نحن", href: "#about" }, { label: "خدماتنا", href: "#features" }, { label: "سياسة الخصوصية", href: "/privacy-policy" }] },
|
logoText="عيادات الجومان"
|
||||||
{ items: [{ label: "احجز موعداً", href: "#contact" }, { label: "طريق المدينة المنورة، حي الفيصلية، جدة 23442، المملكة العربية السعودية", href: "#" }] }
|
/>
|
||||||
]}
|
</div>
|
||||||
logoText="عيادات الجومان"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,38 +2,17 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
|
||||||
|
|
||||||
export default function PortfolioPage() {
|
export default function PortfolioPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider>
|
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="pill" contentWidth="medium" sizing="mediumLargeSizeLargeTitles" background="aurora" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="semibold">
|
||||||
<NavbarLayoutFloatingInline
|
<div id="nav" data-section="nav">
|
||||||
navItems={[
|
<NavbarLayoutFloatingInline
|
||||||
{ name: "الرئيسية", id: "/" },
|
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||||
{ name: "الخدمات", id: "/services" },
|
brandName="Aljoman Dental"
|
||||||
{ name: "المعرض", id: "/portfolio" },
|
button={{ text: "Contact", href: "/contact" }}
|
||||||
{ 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>
|
</div>
|
||||||
<FooterLogoEmphasis
|
|
||||||
columns={[{ items: [{ label: "الرئيسية", href: "/" }, { label: "الخدمات", href: "/services" }, { label: "المعرض", href: "/portfolio" }] }]}
|
|
||||||
logoText="عيادات الجومان"
|
|
||||||
/>
|
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -1,51 +1,18 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
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 (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="pill" contentWidth="medium" sizing="mediumLargeSizeLargeTitles" background="aurora" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="semibold">
|
||||||
defaultButtonVariant="hover-magnetic"
|
<div id="nav" data-section="nav">
|
||||||
borderRadius="pill"
|
<NavbarLayoutFloatingInline
|
||||||
contentWidth="medium"
|
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||||
sizing="mediumLargeSizeLargeTitles"
|
brandName="Aljoman Dental"
|
||||||
background="aurora"
|
button={{ text: "Contact", href: "/contact" }}
|
||||||
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
|
</div>
|
||||||
columns={[
|
|
||||||
{ items: [{ label: "الرئيسية", href: "/" }, { label: "سياسة الخصوصية", href: "/privacy-policy" }] },
|
|
||||||
{ items: [{ label: "طريق المدينة المنورة، حي الفيصلية، جدة 23442، المملكة العربية السعودية", href: "#" }] }
|
|
||||||
]}
|
|
||||||
logoText="عيادات الجومان"
|
|
||||||
/>
|
|
||||||
</ReactLenis>
|
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -1,24 +1,18 @@
|
|||||||
"use client";
|
"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() {
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
|
|
||||||
|
export default function RequestPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider>
|
<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>
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[{ name: "الرئيسية", id: "/" }, { name: "الأسئلة الشائعة", id: "/faq" }, { name: "حجز موعد", id: "/service-request" }, { name: "تواصل معنا", id: "/contact" }]}
|
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||||
brandName="Aljoman Dental"
|
brandName="Aljoman Dental"
|
||||||
|
button={{ text: "Contact", href: "/contact" }}
|
||||||
/>
|
/>
|
||||||
<ContactSplit
|
</div>
|
||||||
tag="حجز موعد"
|
|
||||||
title="احجز موعدك الآن"
|
|
||||||
description="قم بتعبئة النموذج أدناه وسنتواصل معك لتأكيد حجزك."
|
|
||||||
background={{ variant: "sparkles-gradient" }}
|
|
||||||
/>
|
|
||||||
</ReactLenis>
|
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -2,37 +2,17 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
|
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
|
||||||
|
|
||||||
export default function ServicesPage() {
|
export default function ServicesPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider>
|
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="pill" contentWidth="medium" sizing="mediumLargeSizeLargeTitles" background="aurora" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="semibold">
|
||||||
<NavbarLayoutFloatingInline
|
<div id="nav" data-section="nav">
|
||||||
navItems={[
|
<NavbarLayoutFloatingInline
|
||||||
{ name: "الرئيسية", id: "/" },
|
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||||
{ name: "الخدمات", id: "/services" },
|
brandName="Aljoman Dental"
|
||||||
{ name: "المعرض", id: "/portfolio" },
|
button={{ text: "Contact", href: "/contact" }}
|
||||||
{ 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>
|
</div>
|
||||||
<FooterLogoEmphasis
|
|
||||||
columns={[{ items: [{ label: "الرئيسية", href: "/" }, { label: "الخدمات", href: "/services" }, { label: "المعرض", href: "/portfolio" }] }]}
|
|
||||||
logoText="عيادات الجومان"
|
|
||||||
/>
|
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -1,32 +1,18 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
|
||||||
|
|
||||||
export default function TestimonialsPage() {
|
export default function TestimonialsPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider>
|
<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>
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||||
{ name: "الرئيسية", id: "/" },
|
|
||||||
{ name: "التقييمات", id: "testimonials" },
|
|
||||||
{ name: "المدونة", id: "/blog" }
|
|
||||||
]}
|
|
||||||
brandName="Aljoman Dental"
|
brandName="Aljoman Dental"
|
||||||
|
button={{ text: "Contact", href: "/contact" }}
|
||||||
/>
|
/>
|
||||||
<div className="pt-32 pb-20">
|
</div>
|
||||||
<TestimonialCardTwo
|
|
||||||
title="آراء مرضانا"
|
|
||||||
description="نفخر بثقة عملائنا في خدماتنا."
|
|
||||||
testimonials={[]}
|
|
||||||
animationType="slide-up"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<FooterLogoEmphasis logoText="عيادات الجومان" columns={[]} />
|
|
||||||
</ReactLenis>
|
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user