|
| 1 | +import React from 'react' |
| 2 | + |
| 3 | +const TermsConditions: React.FC = () => { |
| 4 | + return ( |
| 5 | + <div className="flex flex-col min-h-screen"> |
| 6 | + <div className="flex-grow max-w-3xl mx-auto px-4 py-12"> |
| 7 | + <h1 className="text-3xl font-bold text-gray-900 mb-6"> |
| 8 | + Terms & Conditions |
| 9 | + </h1> |
| 10 | + |
| 11 | + <p className="text-gray-700 mb-4"> |
| 12 | + These Terms & Conditions govern your use of the LocalMind platform. |
| 13 | + By accessing or using LocalMind, you agree to be bound by these terms. |
| 14 | + </p> |
| 15 | + |
| 16 | + <section className="mb-4"> |
| 17 | + <h2 className="text-xl font-semibold text-gray-800 mb-2"> |
| 18 | + Use License |
| 19 | + </h2> |
| 20 | + <p className="text-gray-700 text-sm"> |
| 21 | + You are granted a limited, non-exclusive, non-transferable license to |
| 22 | + use LocalMind for personal or internal use only. |
| 23 | + </p> |
| 24 | + </section> |
| 25 | + |
| 26 | + <section className="mb-4"> |
| 27 | + <h2 className="text-xl font-semibold text-gray-800 mb-2"> |
| 28 | + Limitations |
| 29 | + </h2> |
| 30 | + <p className="text-gray-700 text-sm"> |
| 31 | + LocalMind is provided “as-is.” We are not liable for any damages |
| 32 | + arising from the use of the platform. |
| 33 | + </p> |
| 34 | + </section> |
| 35 | + |
| 36 | + <section className="mb-4"> |
| 37 | + <h2 className="text-xl font-semibold text-gray-800 mb-2"> |
| 38 | + Governing Law |
| 39 | + </h2> |
| 40 | + <p className="text-gray-700 text-sm"> |
| 41 | + These Terms are governed by the laws of the applicable jurisdiction |
| 42 | + where LocalMind is operated. |
| 43 | + </p> |
| 44 | + </section> |
| 45 | + </div> |
| 46 | + |
| 47 | + </div> |
| 48 | + ) |
| 49 | +} |
| 50 | + |
| 51 | +export default TermsConditions |
0 commit comments