Update src/app/privacy-policy/page.tsx

This commit is contained in:
2026-05-07 21:58:30 +00:00
parent 55147a30ad
commit 71601fc75e

View File

@@ -3,49 +3,34 @@
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';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function PrivacyPolicyPage() {
const navLinks = [
{ name: "الرئيسية", id: "/" },
{ name: "من نحن", id: "/#about" },
{ name: "خدماتنا", id: "/#features" },
{ name: "المدونة", id: "/blog" },
{ name: "سياسة الخصوصية", id: "/privacy-policy" },
{ name: "تواصل معنا", id: "/#contact" },
{ 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 borderRadius="pill" contentWidth="medium">
<ReactLenis root>
<NavbarLayoutFloatingInline navItems={navLinks} brandName="Aljoman Dental" />
<LegalSection
layout="page"
title="سياسة الخصوصية"
sections={[
{ heading: "جمع المعلومات", content: { type: "paragraph", text: "نحن نحترم خصوصيتك ونقوم بجمع معلومات محدودة لتقديم أفضل خدمة." } },
{ heading: "استخدام المعلومات", content: { type: "paragraph", text: "تستخدم البيانات لتحسين تجربتك في العيادة فقط." } }
]}
/>
<FooterLogoEmphasis
columns={[{ items: [{ label: "الرئيسية", href: "/" }, { label: "سياسة الخصوصية", href: "/privacy-policy" }] }]}
logoText="عيادات الجومان"
/>
</ReactLenis>
</ThemeProvider>
);
}