Update src/app/privacy-policy/page.tsx
This commit is contained in:
@@ -1,51 +1,29 @@
|
|||||||
"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"
|
defaultButtonVariant="hover-magnetic"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="pill"
|
borderRadius="pill"
|
||||||
contentWidth="medium"
|
contentWidth="medium"
|
||||||
sizing="mediumLargeSizeLargeTitles"
|
sizing="mediumLargeSizeLargeTitles"
|
||||||
background="aurora"
|
background="aurora"
|
||||||
cardStyle="glass-elevated"
|
cardStyle="glass-elevated"
|
||||||
|
primaryButtonStyle="gradient"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="semibold"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline navItems={navLinks} brandName="Aljoman Dental" />
|
<NavbarLayoutFloatingInline
|
||||||
<LegalSection
|
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||||
layout="page"
|
brandName="Company"
|
||||||
title="سياسة الخصوصية"
|
button={{ text: "Get Started", href: "#" }}
|
||||||
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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user