From 07ca4e0da0aa78dabe9a0f79c222baa07d9cf59e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 06:45:31 +0000 Subject: [PATCH] Update src/app/privacy-policy/page.tsx --- src/app/privacy-policy/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/privacy-policy/page.tsx b/src/app/privacy-policy/page.tsx index a3bb361..2c124d9 100644 --- a/src/app/privacy-policy/page.tsx +++ b/src/app/privacy-policy/page.tsx @@ -28,16 +28,16 @@ export default function PrivacyPolicyPage() { subtitle="Last updated: May 2024" sections={[ { - heading: "1. Information We Collect", content: { text: "We collect information you provide directly to us, such as when you schedule a consultation, fill out a contact form, or communicate with our staff. This may include your name, email address, phone number, and dental history." } + heading: "1. Information We Collect", content: { type: "paragraph", text: "We collect information you provide directly to us, such as when you schedule a consultation, fill out a contact form, or communicate with our staff. This may include your name, email address, phone number, and dental history." } }, { - heading: "2. How We Use Your Information", content: { items: ["To provide and maintain our dental services", "To communicate with you regarding appointments and care", "To improve our patient experience and website", "To comply with legal obligations"] } + heading: "2. How We Use Your Information", content: { type: "list", items: ["To provide and maintain our dental services", "To communicate with you regarding appointments and care", "To improve our patient experience and website", "To comply with legal obligations"] } }, { - heading: "3. Data Security", content: { text: "We implement robust security measures to protect your personal information from unauthorized access, alteration, or destruction. We are committed to maintaining the confidentiality of your health information." } + heading: "3. Data Security", content: { type: "paragraph", text: "We implement robust security measures to protect your personal information from unauthorized access, alteration, or destruction. We are committed to maintaining the confidentiality of your health information." } }, { - heading: "4. Your Rights", content: { items: ["You have the right to request access to your personal data", "You have the right to request correction of inaccurate data", "You have the right to request deletion of your information"] } + heading: "4. Your Rights", content: { type: "list", items: ["You have the right to request access to your personal data", "You have the right to request correction of inaccurate data", "You have the right to request deletion of your information"] } } ]} /> -- 2.49.1