-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (79 loc) · 3.2 KB
/
index.html
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Translate selected text on the web page and convert to specified format.">
<title>Pro Translate</title>
<link rel="icon" type="image/png" href="src/img/square-128.png">
<link rel="stylesheet" href="src/css/index.css">
</head>
<body class="h-screen flex flex-col justify-center items-center bg-gradient-to-tl from-[#e4faf4] to-secondary space-y-4">
<header class="max-w-lg">
<div class="flex flex-row space-x-3 text-primary">
<div class="w-48">
<img class="block w-full" alt="Pro Translate icon" src="src/assets/icons/450.png">
</div>
<div>
<h1 class="font-bold text-3xl">Pro Translate</h1>
<p class="text-lg text-opacity-80">Translate selected text on the web page and convert to specified format.</p>
</div>
</div>
</header>
<div class="space-x-3 text-center py-4">
<a
href="https://github.com/Seakimhour/pro-translate"
target="_BLANK"
class="rounded shadow py-2 px-4 hover:shadow-md bg-primary text-secondary font-bold"
>
View on GitHub
</a>
<a
href="https://chrome.google.com/webstore/detail/pro-translate/ggbiakgkfnpekepnjlocbbhmlcbfmfai"
target="_BLANK"
class="rounded shadow py-2 px-4 hover:shadow-md bg-primary text-secondary font-bold"
>
Download
</a>
</div>
<main class="max-w-lg bg-white shadow rounded p-4 space-y-4">
<h1 class="font-bold text-3xl">Privacy Policy</h1>
<div class="space-y-2">
<p class="font-bold text-gray-600">Effective Date: 2023/01/13</p>
<p class="text-sm text-gray-500">
Pro Translate is owned and operated by Sea Kimhour (referred to herein as
“we”, “us”, or “our”). This chrome extension (Pro Translate) does not
collect any personal information from users.
</p>
<h2 class="border-b-2 border-primary/50 py-2 font-bold text-primary">
Handling input data
</h2>
<p class="text-sm text-gray-500">
For user to use functions in Pro Translate, Pro Translate retrieves user
input and sends request to Google’s API. Input data will not be collected
by us.
</p>
<p class="text-sm text-gray-500">
Please refer to the following link the privacy policy of Google.
</p>
<a
class="text-sm"
href="https://policies.google.com/privacy"
target="_BLANK"
>Google Privacy Policy</a
>
<h2 class="border-b-2 border-primary/50 py-2 font-bold text-primary">
Contact
</h2>
<p class="text-sm text-gray-500">Email: seakimhour@gmail.com</p>
<h2 class="border-b-2 border-primary/50 py-2 font-bold text-primary">
Changes to Privacy Policy
</h2>
<p class="text-sm text-gray-500">
We may update this Privacy Policy and when we do, we will also revise the
“Effective Date” at the top of the Privacy Policy.
</p>
</div>
</main>
</body>
</html>