tsx
151 lines
5.46 KB
| 1 | export default function TermsOfUse() { |
| 2 | return ( |
| 3 | <div className="max-w-4xl mx-auto px-4 py-8"> |
| 4 | <h1 className="text-4xl font-bold mb-8">Terms of Use</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 | 1. Acceptance of Terms |
| 19 | </h2> |
| 20 | <p> |
| 21 | By accessing and using the Hagersten StreetCut website, you accept |
| 22 | and agree to be bound by the terms and provisions of this agreement. |
| 23 | If you do not agree to these terms, please do not use this website. |
| 24 | </p> |
| 25 | </section> |
| 26 | |
| 27 | <section> |
| 28 | <h2 className="text-2xl font-semibold mb-4 text-gray-900"> |
| 29 | 2. Use of Website |
| 30 | </h2> |
| 31 | <p> |
| 32 | This website is provided for informational purposes only. It |
| 33 | displays customer reviews and information about our barber shop |
| 34 | services. You may view and access the content for personal, |
| 35 | non-commercial use. |
| 36 | </p> |
| 37 | </section> |
| 38 | |
| 39 | <section> |
| 40 | <h2 className="text-2xl font-semibold mb-4 text-gray-900"> |
| 41 | 3. Reviews and Content |
| 42 | </h2> |
| 43 | <p> |
| 44 | The reviews displayed on this website are summaries of customer |
| 45 | feedback. While we strive to present accurate information, we do not |
| 46 | guarantee the completeness or accuracy of all reviews. Individual |
| 47 | experiences may vary. |
| 48 | </p> |
| 49 | </section> |
| 50 | |
| 51 | <section> |
| 52 | <h2 className="text-2xl font-semibold mb-4 text-gray-900"> |
| 53 | 4. Booking and Services |
| 54 | </h2> |
| 55 | <p> |
| 56 | Appointments are made by contacting us directly via text message at |
| 57 | +46 72-853 82 88. By booking an appointment, you agree to: |
| 58 | </p> |
| 59 | <ul className="list-disc list-inside mt-2 space-y-2 ml-4"> |
| 60 | <li>Provide accurate contact information</li> |
| 61 | <li>Arrive on time for your scheduled appointment</li> |
| 62 | <li>Notify us in advance if you need to cancel or reschedule</li> |
| 63 | <li>Pay for services rendered according to our pricing</li> |
| 64 | </ul> |
| 65 | </section> |
| 66 | |
| 67 | <section> |
| 68 | <h2 className="text-2xl font-semibold mb-4 text-gray-900"> |
| 69 | 5. Intellectual Property |
| 70 | </h2> |
| 71 | <p> |
| 72 | All content on this website, including text, graphics, logos, and |
| 73 | images, is the property of Hagersten StreetCut or its content |
| 74 | suppliers and is protected by copyright laws. You may not reproduce, |
| 75 | distribute, or create derivative works without our express written |
| 76 | permission. |
| 77 | </p> |
| 78 | </section> |
| 79 | |
| 80 | <section> |
| 81 | <h2 className="text-2xl font-semibold mb-4 text-gray-900"> |
| 82 | 6. Third-Party Links |
| 83 | </h2> |
| 84 | <p> |
| 85 | Our website may contain links to third-party websites (such as |
| 86 | Google Maps). We are not responsible for the content, accuracy, or |
| 87 | practices of these external sites. Your use of third-party websites |
| 88 | is at your own risk and subject to their terms and conditions. |
| 89 | </p> |
| 90 | </section> |
| 91 | |
| 92 | <section> |
| 93 | <h2 className="text-2xl font-semibold mb-4 text-gray-900"> |
| 94 | 7. Disclaimer of Warranties |
| 95 | </h2> |
| 96 | <p> |
| 97 | This website is provided "as is" without any warranties, |
| 98 | express or implied. We do not warrant that the website will be |
| 99 | uninterrupted, error-free, or free of viruses or other harmful |
| 100 | components. |
| 101 | </p> |
| 102 | </section> |
| 103 | |
| 104 | <section> |
| 105 | <h2 className="text-2xl font-semibold mb-4 text-gray-900"> |
| 106 | 8. Limitation of Liability |
| 107 | </h2> |
| 108 | <p> |
| 109 | Hagersten StreetCut shall not be liable for any indirect, |
| 110 | incidental, special, or consequential damages arising out of or in |
| 111 | connection with your use of this website or our services. |
| 112 | </p> |
| 113 | </section> |
| 114 | |
| 115 | <section> |
| 116 | <h2 className="text-2xl font-semibold mb-4 text-gray-900"> |
| 117 | 9. Changes to Terms |
| 118 | </h2> |
| 119 | <p> |
| 120 | We reserve the right to modify these terms at any time. Changes will |
| 121 | be effective immediately upon posting to this website. Your |
| 122 | continued use of the website after changes are posted constitutes |
| 123 | your acceptance of the modified terms. |
| 124 | </p> |
| 125 | </section> |
| 126 | |
| 127 | <section> |
| 128 | <h2 className="text-2xl font-semibold mb-4 text-gray-900"> |
| 129 | 10. Governing Law |
| 130 | </h2> |
| 131 | <p> |
| 132 | These terms shall be governed by and construed in accordance with |
| 133 | the laws of Sweden. Any disputes arising from these terms or your |
| 134 | use of this website shall be subject to the exclusive jurisdiction |
| 135 | of the courts of Sweden. |
| 136 | </p> |
| 137 | </section> |
| 138 | |
| 139 | <section> |
| 140 | <h2 className="text-2xl font-semibold mb-4 text-gray-900"> |
| 141 | 11. Contact Information |
| 142 | </h2> |
| 143 | <p> |
| 144 | If you have any questions about these Terms of Use, please contact |
| 145 | us at +46 72-853 82 88. |
| 146 | </p> |
| 147 | </section> |
| 148 | </div> |
| 149 | </div> |
| 150 | ); |
| 151 | } |