Update src/app/privacy-policy/page.tsx
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user