tsx
87 lines
2.92 KB
| 1 | export default function PrivacyPolicy() { |
| 2 | return ( |
| 3 | <div className="max-w-4xl mx-auto px-4 py-8"> |
| 4 | <h1 className="text-4xl font-bold mb-8">Privacy Policy</h1> |
| 5 | |
| 6 | <div className="space-y-6 text-gray-700"> |
| 7 | <p className="text-sm text-gray-500"> |
| 8 | Last updated:{" "} |
| 9 | {new Date().toLocaleDateString("en-US", { |
| 10 | year: "numeric", |
| 11 | month: "long", |
| 12 | day: "numeric", |
| 13 | })} |
| 14 | </p> |
| 15 | |
| 16 | <section> |
| 17 | <h2 className="text-2xl font-semibold mb-4 text-gray-900"> |
| 18 | Introduction |
| 19 | </h2> |
| 20 | <p> |
| 21 | Welcome to Hagersten StreetCut. This privacy policy explains how we |
| 22 | handle information when you visit our website. |
| 23 | </p> |
| 24 | </section> |
| 25 | |
| 26 | <section> |
| 27 | <h2 className="text-2xl font-semibold mb-4 text-gray-900"> |
| 28 | Information We Collect |
| 29 | </h2> |
| 30 | <p className="font-semibold text-gray-900"> |
| 31 | We do not collect any personal data or information from visitors to |
| 32 | our website. |
| 33 | </p> |
| 34 | <p className="mt-2"> |
| 35 | Our website is purely informational and does not use cookies, |
| 36 | tracking technologies, analytics tools, or any other means of |
| 37 | collecting personal information. |
| 38 | </p> |
| 39 | </section> |
| 40 | |
| 41 | <section> |
| 42 | <h2 className="text-2xl font-semibold mb-4 text-gray-900"> |
| 43 | Third-Party Links |
| 44 | </h2> |
| 45 | <p> |
| 46 | Our website may contain links to third-party websites, such as our |
| 47 | Google Maps page. Please note that we are not responsible for the |
| 48 | privacy practices of these external sites. We encourage you to read |
| 49 | the privacy policies of any third-party websites you visit. |
| 50 | </p> |
| 51 | </section> |
| 52 | |
| 53 | <section> |
| 54 | <h2 className="text-2xl font-semibold mb-4 text-gray-900"> |
| 55 | Booking and Contact |
| 56 | </h2> |
| 57 | <p> |
| 58 | If you contact us via text message at +46 72-853 82 88 to book an |
| 59 | appointment, any information you share will be handled solely for |
| 60 | the purpose of scheduling your appointment. We do not store or share |
| 61 | this information beyond what is necessary to provide our services. |
| 62 | </p> |
| 63 | </section> |
| 64 | |
| 65 | <section> |
| 66 | <h2 className="text-2xl font-semibold mb-4 text-gray-900"> |
| 67 | Changes to This Policy |
| 68 | </h2> |
| 69 | <p> |
| 70 | We may update this privacy policy from time to time. Any changes |
| 71 | will be posted on this page with an updated revision date. |
| 72 | </p> |
| 73 | </section> |
| 74 | |
| 75 | <section> |
| 76 | <h2 className="text-2xl font-semibold mb-4 text-gray-900"> |
| 77 | Contact Us |
| 78 | </h2> |
| 79 | <p> |
| 80 | If you have any questions about this privacy policy, please contact |
| 81 | us at +46 72-853 82 88. |
| 82 | </p> |
| 83 | </section> |
| 84 | </div> |
| 85 | </div> |
| 86 | ); |
| 87 | } |