terms.tsx 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. import getConfig from "next/config";
  2. import React from "react";
  3. import AppWrapper from "../components/AppWrapper";
  4. import { Col } from "../components/Layout";
  5. const { publicRuntimeConfig } = getConfig();
  6. const TermsPage = () => (
  7. <AppWrapper>
  8. {/* TODO: better container */}
  9. <Col width={600} maxWidth="97%" alignItems="flex-start">
  10. <h3>{publicRuntimeConfig.SITE_NAME} Terms of Service</h3>
  11. <p>
  12. By accessing the website at{" "}
  13. <a href={`https://${publicRuntimeConfig.DEFAULT_DOMAIN}`}>
  14. https://{publicRuntimeConfig.DEFAULT_DOMAIN}
  15. </a>
  16. , you are agreeing to be bound by these terms of service, all applicable
  17. laws and regulations, and agree that you are responsible for compliance
  18. with any applicable local laws. If you do not agree with any of these
  19. terms, you are prohibited from using or accessing this site. The
  20. materials contained in this website are protected by applicable
  21. copyright and trademark law.
  22. </p>
  23. <p>
  24. In no event shall {publicRuntimeConfig.SITE_NAME} or its suppliers be
  25. liable for any damages (including, without limitation, damages for loss
  26. of data or profit, or due to business interruption) arising out of the
  27. use or inability to use the materials on{" "}
  28. {publicRuntimeConfig.DEFAULT_DOMAIN} website, even if{" "}
  29. {publicRuntimeConfig.SITE_NAME} or a {publicRuntimeConfig.SITE_NAME}{" "}
  30. authorized representative has been notified orally or in writing of the
  31. possibility of such damage. Because some jurisdictions do not allow
  32. limitations on implied warranties, or limitations of liability for
  33. consequential or incidental damages, these limitations may not apply to
  34. you.
  35. </p>
  36. <p>
  37. The materials appearing on {publicRuntimeConfig.SITE_NAME} website could
  38. include technical, typographical, or photographic errors.{" "}
  39. {publicRuntimeConfig.SITE_NAME} does not warrant that any of the
  40. materials on its website are accurate, complete or current.{" "}
  41. {publicRuntimeConfig.SITE_NAME} may make changes to the materials
  42. contained on its website at any time without notice. However{" "}
  43. {publicRuntimeConfig.SITE_NAME} does not make any commitment to update
  44. the materials.
  45. </p>
  46. <p>
  47. {publicRuntimeConfig.SITE_NAME} has not reviewed all of the sites linked
  48. to its website and is not responsible for the contents of any such
  49. linked site. The inclusion of any link does not imply endorsement by{" "}
  50. {publicRuntimeConfig.SITE_NAME} of the site. Use of any such linked
  51. website is at the {"user's"} own risk.
  52. </p>
  53. <p>
  54. {publicRuntimeConfig.SITE_NAME} may revise these terms of service for
  55. its website at any time without notice. By using this website you are
  56. agreeing to be bound by the then current version of these terms of
  57. service.
  58. </p>
  59. </Col>
  60. </AppWrapper>
  61. );
  62. export default TermsPage;