terms.tsx 2.8 KB

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