diff --git a/src/app/privacy-policy/page.tsx b/src/app/privacy-policy/page.tsx index e154d7a..ede908c 100644 --- a/src/app/privacy-policy/page.tsx +++ b/src/app/privacy-policy/page.tsx @@ -7,7 +7,7 @@ import LegalSection from '@/components/legal/LegalSection'; export default function PrivacyPolicyPage() { return ( - + @@ -27,28 +28,16 @@ export default function PrivacyPolicyPage() { subtitle="Last updated: May 2024" sections={[ { - 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: "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: { - 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: "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: { - 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: "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: { - type: "numbered-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" - ] - } + heading: "4. Your Rights", content: { type: "numbered-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"] } } ]} />