Skip to content

Commit

Permalink
terms and privacy policy
Browse files Browse the repository at this point in the history
  • Loading branch information
saml33 committed Aug 8, 2024
1 parent 09d288c commit 3fd7c07
Show file tree
Hide file tree
Showing 7 changed files with 727 additions and 9 deletions.
14 changes: 9 additions & 5 deletions components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,18 @@ const Footer = () => {
>
Risks
</Link>
<a
<Link
className="font-bold text-th-fgd-1 md:hover:text-th-fgd-3"
href="https://docs.mango.markets/legal/terms-of-use"
target="_blank"
rel="noopener noreferrer"
href="/terms-of-use"
>
Terms of Use
</a>
</Link>
<Link
className="font-bold text-th-fgd-1 md:hover:text-th-fgd-3"
href="/privacy-policy"
>
Privacy Policy
</Link>
</div>
</>
)
Expand Down
2 changes: 2 additions & 0 deletions components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ const TermsOfUse = () => {
return (
(!acceptTerms || acceptTerms < termsLastUpdated) &&
asPath !== '/risks' &&
asPath !== '/terms-of-use' &&
asPath !== '/privacy-policy' &&
yieldFansIntro
)
}, [acceptTerms, asPath, yieldFansIntro])
Expand Down
14 changes: 11 additions & 3 deletions components/modals/TermsOfUseModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,17 +79,25 @@ const TermsOfUseModal = ({ isOpen, onClose }: ModalProps) => {
target="_blank"
rel="noopener noreferrer"
>
Risks
Risks,
</a>
and
<a
className="mx-1"
href="https://docs.mango.markets/legal/terms-of-use"
href="/terms-of-use"
rel="noopener noreferrer"
target="_blank"
>
{t('terms-of-use')}
</a>
and
<a
className="mx-1"
href="/privacy-policy"
rel="noopener noreferrer"
target="_blank"
>
Privacy Policy
</a>
</p>
</Checkbox>
<Button
Expand Down
106 changes: 106 additions & 0 deletions pages/privacy-policy.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
import type { NextPage } from 'next'

const PrivacyPage: NextPage = () => {
return (
<div className="terms rounded-2xl border-2 border-th-fgd-1 bg-th-bkg-1 p-6">
<h1 className="mb-4">Privacy Policy</h1>
<p>LAST UPDATED: August 7 2024</p>

<p>
Welcome to Yield Fan (“we,” “our,” or “us”). We are committed to
protecting your privacy and ensuring a safe online experience. This
Privacy Policy explains how we collect, use, and protect your
information when you use our website yield.fan and our services.
</p>

<h2>2. Information We Collect</h2>

<p>2.1. Analytics Data</p>

<p>
We use analytics tools to monitor and analyze the usage of our website
and services. This may include information about your browser type, IP
address, pages visited, and the time spent on our site. This data is
collected in an aggregated and non-identifiable form and is used to
improve our services and enhance your user experience.
</p>

<p>2.2. Non-Identifying Information</p>

<p>
We may collect non-identifying information such as wallet addresses and
details of your transactions on Yield Fan. This information is used to
provide and improve our services and to ensure the functionality and
accuracy of our platform. While wallet addresses and transaction details
are collected, this information is not used to personally identify you.
</p>

<h2>3. How We Use Your Information</h2>

<p>We use the information we collect for the following purposes:</p>

<p>
To Improve Our Services: Analytics data helps us understand user
behavior and improve our website and services.
</p>

<p>
To Provide Services: Non-identifying information, such as wallet
addresses and transaction details, is used to facilitate and manage
transactions and ensure the proper functioning of our platform.
</p>

<p>
To Communicate With You: We may use your contact information to send
updates, respond to inquiries, and provide support.
</p>

<h2>4. Data Security</h2>

<p>
We implement appropriate technical and organizational measures to
safeguard your information from unauthorized access, alteration,
disclosure, or destruction. However, please be aware that no method of
transmission over the internet or electronic storage is 100% secure.
</p>

<h2>5. Sharing Your Information</h2>

<p>
We do not sell, trade, or rent your personal information to third
parties. We may share non-identifying information with third-party
service providers who assist us in operating our website and services,
provided that these parties agree to keep this information confidential
and use it only for the purposes for which it was shared.
</p>

<h2>6. Your Choices</h2>

<p>
You have the right to access, correct, or delete your non-identifying
information. If you wish to make changes to your information or have any
questions about our privacy practices, please contact us at
[email protected].
</p>

<h2>7. Changes to This Privacy Policy</h2>

<p>
We may update this Privacy Policy from time to time to reflect changes
in our practices or legal requirements. We will notify you of any
significant changes by posting the updated policy on our website. Your
continued use of our services after any changes indicates your
acceptance of the updated policy.
</p>

<h2>8. Contact Us</h2>

<p>
If you have any questions or concerns about this Privacy Policy, please
contact us at: [email protected]
</p>
</div>
)
}

export default PrivacyPage
Loading

0 comments on commit 3fd7c07

Please sign in to comment.