Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | import React from 'react'; export const metadata = { title: 'Privacy Policy | Elite Events', description: 'Privacy Policy for Elite Events'}; export default function PrivacyPolicyPage() { return ( <div className="max-w-[1170px] mx-auto px-4 sm:px-8 xl:px-0 pt-[140px] pb-20"> <div className="max-w-[800px] mx-auto"> <h1 className="text-3xl sm:text-4xl font-bold text-dark mb-8">Privacy Policy</h1> <div className="prose prose-lg"> <p className="text-body mb-6"> Last updated: {new Date().toLocaleDateString()} </p> <section className="mb-8"> <h2 className="text-2xl font-semibold text-dark mb-4">1. Information We Collect</h2> <p className="text-body mb-4"> We collect information you provide directly to us, such as when you create an account, place an order, or contact us for support. </p> </section> <section className="mb-8"> <h2 className="text-2xl font-semibold text-dark mb-4">2. How We Use Your Information</h2> <p className="text-body mb-4"> We use the information we collect to provide, maintain, and improve our services, process your transactions, and communicate with you. </p> </section> <section className="mb-8"> <h2 className="text-2xl font-semibold text-dark mb-4">3. Information Sharing</h2> <p className="text-body mb-4"> We do not sell, trade, or rent your personal information to third parties. We may share your information with service providers who assist us in operating our website. </p> </section> <section className="mb-8"> <h2 className="text-2xl font-semibold text-dark mb-4">4. Data Security</h2> <p className="text-body mb-4"> We implement appropriate security measures to protect your personal information from unauthorized access, alteration, or destruction. </p> </section> <section className="mb-8"> <h2 className="text-2xl font-semibold text-dark mb-4">5. Your Rights</h2> <p className="text-body mb-4"> You have the right to access, update, or delete your personal information. Please contact us if you wish to exercise these rights. </p> </section> <section className="mb-8"> <h2 className="text-2xl font-semibold text-dark mb-4">6. Contact Us</h2> <p className="text-body mb-4"> If you have any questions about this Privacy Policy, please contact us at support@dcsuniverse.com </p> </section> </div> </div> </div> ); } |