Skip to content

Commit

Permalink
Fix privacy policy links
Browse files Browse the repository at this point in the history
  • Loading branch information
wilwade committed Oct 2, 2024
1 parent 2a9fc35 commit 2ce0969
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 19 deletions.
6 changes: 5 additions & 1 deletion src/components/Footer.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
<script type="ts">
import { base } from '$app/paths';
</script>

<footer class="freq-container flex h-[50px] items-center justify-end gap-3 text-xs font-semibold">
<div>© {new Date().getFullYear()} Frequency Network Foundation</div>
<span class="h-4 w-[2px] bg-black" />
<a href="/privacy">Privacy Policy</a>
<a href="{base}/privacy">Privacy Policy</a>
<span class="h-4 w-[2px] bg-black" />
<div class="whitespace-nowrap">All Rights Reserved</div>
</footer>
43 changes: 25 additions & 18 deletions src/routes/privacy/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<script type="ts">
import { base } from '$app/paths';
</script>

<div class="mx-auto flex-grow justify-center px-4 sm:px-6 lg:px-8">
<h3 class="title-75">Privacy Policy</h3>
<div class="privacy max-lg">
Expand All @@ -16,20 +20,23 @@
located at https://claimfrequency.xyz.
</p>
<ol>
<li><a href="/privacy/#notice_regarding_use_of_the_blockchain">NOTICE REGARDING USE OF THE BLOCKCHAIN</a></li>
<li><a href="/privacy/#updates_to_this_privacy_notice">UPDATES TO THIS PRIVACY NOTICE</a></li>
<li><a href="/privacy/#personal_information_we_collect">PERSONAL INFORMATION WE COLLECT</a></li>
<li><a href="/privacy/#how_we_use_personal_information">HOW WE USE PERSONAL INFORMATION</a></li>
<li><a href="/privacy/#how_we_disclose_personal_information">HOW WE DISCLOSE PERSONAL INFORMATION</a></li>
<li><a href="/privacy/#your_privacy_choices_and_rights">YOUR PRIVACY CHOICES AND RIGHTS</a></li>
<li>
<a href="/privacy/#international_transfers_of_personal">INTERNATIONAL TRANSFERS OF PERSONAL INFORMATI</a>ON
<a href="{base}/privacy/#notice_regarding_use_of_the_blockchain">NOTICE REGARDING USE OF THE BLOCKCHAIN</a>
</li>
<li><a href="{base}/privacy/#updates_to_this_privacy_notice">UPDATES TO THIS PRIVACY NOTICE</a></li>
<li><a href="{base}/privacy/#personal_information_we_collect">PERSONAL INFORMATION WE COLLECT</a></li>
<li><a href="{base}/privacy/#how_we_use_personal_information">HOW WE USE PERSONAL INFORMATION</a></li>
<li><a href="{base}/privacy/#how_we_disclose_personal_information">HOW WE DISCLOSE PERSONAL INFORMATION</a></li>
<li><a href="{base}/privacy/#your_privacy_choices_and_rights">YOUR PRIVACY CHOICES AND RIGHTS</a></li>
<li>
<a href="{base}/privacy/#international_transfers_of_personal">INTERNATIONAL TRANSFERS OF PERSONAL INFORMATI</a
>ON
</li>
<li><a href="/privacy/#retention_of_personal_information">RETENTION OF PERSONAL INFORMATION</a></li>
<li><a href="/privacy/#supplemental_notice_for_eu_gdpr">SUPPLEMENTAL NOTICE FOR EU GDPR</a></li>
<li><a href="/privacy/#childrens_information">CHILDREN’S INFORMATION</a></li>
<li><a href="/privacy/#third_party_websites_applications">THIRD-PARTY WEBSITES/APPLICATIONS</a></li>
<li><a href="/privacy/#contact_us">CONTACT US</a></li>
<li><a href="{base}/privacy/#retention_of_personal_information">RETENTION OF PERSONAL INFORMATION</a></li>
<li><a href="{base}/privacy/#supplemental_notice_for_eu_gdpr">SUPPLEMENTAL NOTICE FOR EU GDPR</a></li>
<li><a href="{base}/privacy/#childrens_information">CHILDREN’S INFORMATION</a></li>
<li><a href="{base}/privacy/#third_party_websites_applications">THIRD-PARTY WEBSITES/APPLICATIONS</a></li>
<li><a href="{base}/privacy/#contact_us">CONTACT US</a></li>
</ol>
<h4 id="notice_regarding_use_of_the_blockchain">1. NOTICE REGARDING USE OF THE BLOCKCHAIN</h4>
<p>
Expand Down Expand Up @@ -111,7 +118,7 @@
have been opened, acted on, or forwarded.
<p>
<em
>See “<a href="/privacy/#rights">Your Privacy Choices and Rights</a>” below to understand your choices
>See “<a href="{base}/privacy/#rights">Your Privacy Choices and Rights</a>” below to understand your choices
regarding these Technologies.</em
>
</p>
Expand Down Expand Up @@ -179,7 +186,7 @@
</p>
<p>
If you have any questions about our marketing practices, you may contact us at any time as set forth in “<a
href="/privacy/#contact_us">Contact Us</a
href="{base}/privacy/#contact_us">Contact Us</a
>” below.
</p>
<h5>D. With Your Consent</h5>
Expand Down Expand Up @@ -372,10 +379,10 @@
</p>
<p>
If you are a parent or guardian and believe your child has uploaded personal information to our site without your
consent, you may contact us as described in “<a href="/privacy/#contact_us">Contact Us</a>” below. If we become
aware that a child has provided us with personal information in violation of applicable law, we will delete any
personal information we have collected, unless we have a legal obligation to keep it, and terminate the child’s
account, if applicable.
consent, you may contact us as described in “<a href="{base}/privacy/#contact_us">Contact Us</a>” below. If we
become aware that a child has provided us with personal information in violation of applicable law, we will delete
any personal information we have collected, unless we have a legal obligation to keep it, and terminate the
child’s account, if applicable.
</p>
<h4 id="third_party_websites_applications">11. THIRD-PARTY WEBSITES/APPLICATIONS</h4>
<p>
Expand Down

0 comments on commit 2ce0969

Please sign in to comment.