-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #104 from okTurtles/greg/task/102-tos
closes #102 - tos page
- Loading branch information
Showing
2 changed files
with
115 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
--- | ||
import Layout from '../layouts/DefaultLayout.astro'; | ||
import { resolvePath } from '@/utils/helpers.js' | ||
--- | ||
|
||
<Layout> | ||
<script src="https://donorbox.org/widget.js" paypalExpress="false"></script> | ||
<div class="c-wrapper"> | ||
<section class="container grey-container"> | ||
<div class="is-posttitle">GROUP INCOME</div> | ||
<h1 class="is-title-1 c-main-title">Terms & Conditions</h1> | ||
</section> | ||
<section class="c-container-middle"> | ||
<p> | ||
<i>Last updated: March 27, 2024</i> | ||
</p> | ||
|
||
<h3> | ||
Acceptance of Terms | ||
</h3> | ||
<p> | ||
The Group Income website and app ("Services") are a project of okTurtles Foundation Inc. ("okTurtles"), a 501(c)(3) non-profit registered in the state of Florida, USA. | ||
</p> | ||
<p> | ||
By accessing and using Services, you agree to be bound by these Terms and Conditions ("Terms"), and our <a href={resolvePath('/privacy-policy')} class="is-link">Privacy Policy</a>. If you do not agree with any part of these Terms, you must not use our Services. | ||
</p> | ||
<h3>Disclaimer of Warranty and Liability</h3> | ||
<p>Your use of the Services is at your sole risk. The Services are provided on an "AS IS" and "AS AVAILABLE" basis. okTurtles expressly disclaims all warranties of any kind, whether express or implied, including but not limited to the implied warranties of merchantability, fitness for a particular purpose, and non-infringement.</p> | ||
<p>okTurtles and its affiliates, officers, directors, employees, and agents shall not be liable for any direct, indirect, incidental, special, or consequential damages, including but not limited to, damages for loss of profits, goodwill, use, data or other intangible losses resulting from the use or inability to use the Services, or any unauthorized access to or alteration of your data.</p> | ||
<p> | ||
TO THE EXTENT WHICH IS PERMITTED BY APPLICABLE LAW IN YOUR JURISDICTION, OKTURTLES EXPRESSLY DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT OF THIRD PARTY RIGHTS, AND FITNESS FOR A PARTICULAR PURPOSE. NO INFORMATION OR ADVICE PROVIDED BY OKTURTLES OR A OKTURTLES REPRESENTATIVE SHALL CREATE A WARRANTY OR IN ANY WAY CHANGE THE TERMS OF THIS WARRANTY. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE ENTIRE COST OF ALL NECESSARY SERVICING, REPAIRS, OR CORRECTIONS. | ||
</p> | ||
<p>TO THE EXTENT WHICH IS PERMITTED BY APPLICABLE LAW IN YOUR JURISDICTION, IN NO EVENT, INCLUDING NEGLIGENCE, SHALL OKTURTLES BE LIABLE FOR PERSONAL INJURY OR ANY INCIDENTAL, SPECIAL, INDIRECT, DIRECT, OR CONSEQUENTIAL DAMAGES, COSTS, OR LOSSES, EVEN IF OKTURTLES HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN NO EVENT SHALL OKTURTLES'S TOTAL LIABILITY TO YOU FOR ALL DAMAGES EXCEED THE AMOUNT, IF ANY, PAID BY YOU FOR THE SOFTWARE, EXCEPT AS MAY BE REQUIRED BY APPLICABLE LAW IN CASES INVOLVING PERSONAL INJURY.</p> | ||
|
||
<h3>Data and Security</h3> | ||
|
||
<p>While okTurtles strives to protect the security and integrity of your data (and, in our opinion, have gone <a href={resolvePath('/privacy-policy')} class="is-link">above and beyond in this regard</a>), we cannot guarantee the security of any information transmitted to or from the Services. Any transmission of data is at your own risk. okTurtles shall not be liable for any loss, misuse, unauthorized access, disclosure, alteration, or destruction of your data.</p> | ||
|
||
<h3>Jurisdiction and Governing Law</h3> | ||
|
||
<p>These Terms shall be governed by and construed in accordance with the laws of the State of Florida, without giving effect to any principles of conflicts of law. Any legal action or proceeding arising out of or related to these Terms or the Services shall be instituted exclusively in the state or federal courts located in Miami-Dade, Florida, and you expressly consent to the personal jurisdiction of such courts.</p> | ||
|
||
<h3>Changes to Terms and Conditions</h3> | ||
|
||
<p>okTurtles reserves the right to modify or update these Terms at any time. Your continued use of the Services after any such changes constitutes your acceptance of the new Terms.</p> | ||
|
||
<h3>Contact Information</h3> | ||
|
||
<p>If you have any questions about these Terms, please contact us at [email protected].</p> | ||
</section> | ||
</div> | ||
</Layout> | ||
|
||
<style lang="scss"> | ||
@import "../styles/_variables"; | ||
@import "../styles/_mixins"; | ||
|
||
.c-wrapper { | ||
padding-bottom: 2rem; | ||
|
||
|
||
} | ||
|
||
.container { | ||
margin: 0 auto; | ||
padding: 2rem 1rem; | ||
display: flex; | ||
flex-direction: column; | ||
|
||
@include tablet { | ||
padding: 4rem 1rem; | ||
} | ||
|
||
@include desktop { | ||
padding: 6rem 1rem; | ||
} | ||
} | ||
|
||
.grey-container { | ||
text-align: center; | ||
} | ||
|
||
.c-container-middle { | ||
width: 45.6rem; | ||
max-width: 100%; | ||
margin: 4rem auto; | ||
padding: 0 1rem; | ||
|
||
h2 { | ||
font-size: 2rem; | ||
font-weight: 600; | ||
margin: 3rem auto; | ||
} | ||
|
||
h3 { | ||
font-size: 1.3rem; | ||
font-weight: 600; | ||
margin: 3rem auto 2rem auto; | ||
} | ||
|
||
p { | ||
margin-bottom: 1.5rem; | ||
} | ||
} | ||
|
||
.c-main-title { | ||
max-width: 47rem; | ||
margin: 1.5rem auto; | ||
|
||
@include phone { | ||
max-width: 30rem; | ||
} | ||
} | ||
</style> |