-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jay Wang <jay@zijie.wang>
- Loading branch information
Showing
2 changed files
with
100 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
@import url('../global.css'); | ||
|
||
body { | ||
background-color: #fff; | ||
max-width: 680px; | ||
margin: 0 auto; | ||
padding: 0 20px; | ||
} | ||
|
||
.logo { | ||
display: inline-block; | ||
vertical-align: middle; | ||
margin-top: 25%; | ||
|
||
& img { | ||
width: 100px; | ||
height: 100px; | ||
} | ||
} | ||
|
||
h1 { | ||
margin-top: 0px; | ||
} | ||
|
||
.title { | ||
font-size: 24px; | ||
font-weight: bold; | ||
margin-bottom: 16px; | ||
} | ||
|
||
footer { | ||
padding: 24px 0; | ||
text-align: center; | ||
border-top: 1px solid #eee; | ||
} | ||
|
||
.footer-notice { | ||
font-size: 12px; | ||
color: #999; | ||
} |
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,60 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="./index.css"> | ||
<title>Privacy Policy | prompster</title> | ||
</head> | ||
<body> | ||
<header> | ||
<a href="https://pair-code.github.io/farsight" class="logo"> | ||
<img src="../android-chrome-512x512.png"></img> | ||
</a> | ||
<h1>Privacy Policy</h1> | ||
</header> | ||
<p> | ||
Created: March 11, 2024<br> | ||
Last updated: March 11, 2024 | ||
</p> | ||
<p> | ||
This Privacy Policy governs the use of the Wordflow Google Doc Add-on extension (the "Extension") | ||
and outlines the types of information collected by the Extension and how it is used. | ||
Please read this Privacy Policy carefully before using the Extension. | ||
By using the Extension, you agree to the terms of this Privacy Policy. | ||
If you do not agree with these terms, please do not use the Extension. | ||
</p> | ||
<h2> | ||
Information Collection and Use | ||
</h2> | ||
<p> | ||
The Extension <strong>DOES NOT</strong> collect or store any personal or | ||
sensitive information. It only stores community-shared prompts and the | ||
number of times a prompt is run. | ||
All prompts are directly sent to external LLM APIs | ||
such as Google Gemini Pro and OpenAI GPT 4. Please refer to their data privacy | ||
policy for more details (<a href="https://ai.google.dev/terms">Gemini API</a> | ||
and <a href="https://openai.com/policies/privacy-policy">OpenAI API</a>). | ||
All private prompts are stored locally in the client's browser local storage. | ||
</p> | ||
<h2> | ||
Data Security | ||
</h2> | ||
<p> | ||
The Extension is designed to prioritize user privacy and <strong>DOES NOT</strong> | ||
collect any personal data. Therefore, there is no risk of unauthorized access or misuse of user data. | ||
</p> | ||
<h2> | ||
Contact Us | ||
</h2> | ||
<p> | ||
If you have any questions or concerns about this Privacy Policy, please contact us at <a href="mailto:jay@zijie.wang">jay@zijie.wang</a>. | ||
</p> | ||
</body> | ||
<footer> | ||
<div class="footer-notice"> | ||
Jay Wang, March 2024 | ||
</div> | ||
</footer> | ||
</html> |