terms.tsx 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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
  24. for any damages (including, without limitation, damages for loss of data
  25. or 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}{" "}
  28. authorized representative has been notified orally or in writing of the
  29. possibility of such damage. Because some jurisdictions do not allow
  30. limitations on implied warranties, or limitations of liability for
  31. consequential or incidental damages, these limitations may not apply to
  32. you.
  33. </p>
  34. <p>
  35. The materials appearing on ${process.env.SITE_NAME} website could
  36. include technical, typographical, or photographic errors. $
  37. {process.env.SITE_NAME} does not warrant that any of the materials on
  38. its website are accurate, complete or current. ${process.env.SITE_NAME}{" "}
  39. may make changes to the materials contained on its website at any time
  40. without notice. However ${process.env.SITE_NAME} does not make any
  41. commitment to update the materials.
  42. </p>
  43. <p>
  44. ${process.env.SITE_NAME} has not reviewed all of the sites linked to its
  45. website and is not responsible for the contents of any such linked site.
  46. The inclusion of any link does not imply endorsement by $
  47. {process.env.SITE_NAME} of the site. Use of any such linked website is
  48. at the {"user's"} own risk.
  49. </p>
  50. <p>
  51. ${process.env.SITE_NAME} may revise these terms of service for its
  52. website at any time without notice. By using this website you are
  53. agreeing to be bound by the then current version of these terms of
  54. service.
  55. </p>
  56. </Col>
  57. </AppWrapper>
  58. );
  59. export default TermsPage;