TermsOfUse.js
1 import React from "react"; 2 import "./TermsOfUse.css"; // Import the CSS file for styling 3 4 const TermsOfUse = () => { 5 return ( 6 <div className="terms-container"> 7 <h1>Terms of Use</h1> 8 <p> 9 Welcome to the Coders Aid Fund website. Please read these terms of use 10 carefully before using our website. 11 </p> 12 <div className="terms-section"> 13 <h2>1. Acceptance of Terms</h2> 14 <p> 15 The content on these websites, including but not limited to text, 16 graphics, and logos, is the property of Somerco Research Ltd. and is 17 protected by applicable copyright and trademark laws. 18 </p> 19 </div> 20 <div className="terms-section"> 21 <h2>2. Use of the Website</h2> 22 <p> 23 You agree to use this website only for lawful purposes and in a way 24 that does not infringe the rights of others or restrict or inhibit 25 their use and enjoyment of the site. 26 </p> 27 </div> 28 <div className="terms-section"> 29 <h2>3. Intellectual Property</h2> 30 <p> 31 The content on this website, including but not limited to text, 32 graphics, and logos, is the property of Coders Aid Fund and is 33 protected by applicable copyright and trademark laws. 34 </p> 35 </div> 36 <div className="terms-section"> 37 <h2>4. Limitation of Liability</h2> 38 <p> 39 Somerco Research Ltd. will not be liable for any damages arising out 40 of or in connection with the use of these websites. 41 </p> 42 </div> 43 <div className="terms-section"> 44 <h2>5. Limitation of Liability</h2> 45 <p> 46 These Terms of Use shall be governed by and construed in accordance 47 with the laws of the United Kingdom. Any disputes arising from or 48 related to the use of these websites will be subject to the exclusive 49 jurisdiction of the courts of the United Kingdom. 50 </p> 51 </div> 52 <div className="terms-section"> 53 <h2>6. Changes to These Terms</h2> 54 <p> 55 We reserve the right to modify these terms at any time. Your continued 56 use of the website will signify your acceptance of any changes. 57 </p> 58 </div> 59 <p className="last-updated">Last Updated: August 12, 2024</p> 60 </div> 61 ); 62 }; 63 64 export default TermsOfUse;