forked from passportxyz/passport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
privacy.tsx
34 lines (33 loc) · 1.46 KB
/
privacy.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// --- React Methods
import React from "react";
export default function Privacy() {
return (
<div className="min-h-max min-h-default bg-purple-darkpurple text-gray-100">
<div className="container mx-auto px-5 py-2">
<div className="mx-auto flex flex-wrap">
<div className="w-full py-6 text-white">
<img src="/assets/gitcoinLogoAndName.svg" alt="logo" className="mt-0 md:mt-40" />
<div className="mt-10 leading-relaxed">
<p className="text-5xl">dPassport Data Deletion Instructions</p>
</div>
<div className="mt-2 text-lg md:mt-10 md:text-xl">
Accessing, Updating, Correcting, and Deleting your Information
</div>
<div className="mt-0 text-sm md:mt-10 md:text-base">
You may access information that you have voluntarily provided through your account on the Services, and to
review, correct, or delete it by sending a request to [email protected]. You can request to change
contact choices, opt-out of our sharing with others, and update your personal information and preferences.
<br />
<br />
For full privacy policy, see{" "}
<a href={"https://bounties.gitcoin.co/legal/privacy"}>
<u>https://bounties.gitcoin.co/legal/privacy</u>
</a>
.
</div>
</div>
</div>
</div>
</div>
);
}