TermsOfService.tsx 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. import React from 'react'
  2. import { LegalLastUpdateText, LegalListItem, LegalParagraph, Text } from '@/shared/components'
  3. export const TermsOfService: React.FC = () => {
  4. return (
  5. <div>
  6. <Text variant="h5">Terms of Service</Text>
  7. <LegalLastUpdateText>Last updated on the 4th of May 2021</LegalLastUpdateText>
  8. <LegalParagraph>
  9. This Terms of Service (&quot;Agreement&quot;) is a binding obligation between you (&quot;User&quot;) and
  10. Jsgenesis AS (&quot;Company&quot;, &quot;We&quot;, &quot;Us&quot;, &quot;Our&quot;) for use of our Joystream
  11. Player interface (&quot;Atlas&quot;) hosted at play.joystream.org and all other products (collectively
  12. &quot;Software&quot;) developed and published by Us.
  13. </LegalParagraph>
  14. <LegalParagraph header>1. Agreement to Terms</LegalParagraph>
  15. <LegalParagraph>
  16. By using Our Software, the User is agreeing to be bound by this Agreement. If you are acting on behalf of
  17. another company or an employer, you must have the rights to act on their behalf.
  18. </LegalParagraph>
  19. <LegalParagraph header>2. Changes to Terms</LegalParagraph>
  20. <LegalParagraph>
  21. This Agreement may be modified or updated at the sole discretion of Company without notice. Your continued use
  22. of our Software is confirmation of your acceptance of the latest Agreement.
  23. </LegalParagraph>
  24. <LegalParagraph header>3. Privacy Policy</LegalParagraph>
  25. <LegalParagraph>
  26. Please see our{' '}
  27. <a href="https://www.joystream.org/privacy-policy/" rel="noopener noreferrer" target="_blank">
  28. privacy policy
  29. </a>{' '}
  30. (&quot;Privacy Policy&quot;) for information regarding privacy.
  31. </LegalParagraph>
  32. <LegalParagraph header>4. Membership</LegalParagraph>
  33. <LegalParagraph>
  34. By generating private/public cryptographic keys (&quot;Keys&quot;) or applying for a membership account
  35. (&quot;Membership&quot;), you accept the risk of losing access to your Keys and Membership. Reasons include, but
  36. are not limited to:
  37. </LegalParagraph>
  38. <ol>
  39. <LegalListItem>Losing passwords</LegalListItem>
  40. <LegalListItem>Losing recovery seeds or mnemonics</LegalListItem>
  41. <LegalListItem>Deleting accounts and backups</LegalListItem>
  42. <LegalListItem>Security breaches</LegalListItem>
  43. </ol>
  44. <LegalParagraph>
  45. Under no circumstance will Company take any responsibility for loss resulting from losing access to Membership
  46. or Keys.
  47. </LegalParagraph>
  48. <LegalParagraph header>5. User Conduct</LegalParagraph>
  49. <LegalParagraph>
  50. By using Our Software, you agree to not state, write, link to, download, distribute, share or encourage other
  51. users to state, write, link to, download, distribute, share or encourage anything that:
  52. </LegalParagraph>
  53. <ol>
  54. <LegalListItem>breach or infringe any copyright or intellectual property of any third party.</LegalListItem>
  55. <LegalListItem>is abusive, malicious, threatening or unlawful in any way.</LegalListItem>
  56. </ol>
  57. <LegalParagraph>
  58. Company has not reviewed all content published on our services, and is not responsible for content submitted or
  59. provided by individuals or groups not directly tied to them.
  60. </LegalParagraph>
  61. <LegalParagraph header>6. Responsibilities and Risks</LegalParagraph>
  62. <LegalParagraph>
  63. In no event shall Company, its contractors, employees or owners be liable for any damage or loss of any kind to
  64. User arising out of the use or inability to use any Software made by Company. In no event shall Company, its
  65. contractors, employees or owners be liable for any damage or loss of any kind to User resulting of clicking
  66. links, following guides, using software or doing anything else recommended by Company.
  67. </LegalParagraph>
  68. <LegalParagraph header>7. Content Takedown Policy</LegalParagraph>
  69. <LegalParagraph>
  70. Jsgenesis has established a policy for content takedowns in accordance with the Digital Millennium Copyright Act
  71. (DMCA) which can be viewed here.
  72. </LegalParagraph>
  73. <LegalParagraph header>8. Governing Law</LegalParagraph>
  74. <LegalParagraph>
  75. These terms and conditions are governed by and construed in accordance with the laws of Norway.
  76. </LegalParagraph>
  77. </div>
  78. )
  79. }