diff options
| author | Dhravya <[email protected]> | 2024-03-25 15:06:25 -0700 |
|---|---|---|
| committer | Dhravya <[email protected]> | 2024-03-25 15:06:25 -0700 |
| commit | f11a9cad2ec2c5c0dd259a21cb822fa86154eaaf (patch) | |
| tree | c01ee921316b21b33bef8f8acbdcac19d30aae2c /apps/web/src | |
| parent | feat: added and fixed query and search interface (diff) | |
| download | supermemory-f11a9cad2ec2c5c0dd259a21cb822fa86154eaaf.tar.xz supermemory-f11a9cad2ec2c5c0dd259a21cb822fa86154eaaf.zip | |
added policy
Diffstat (limited to 'apps/web/src')
| -rw-r--r-- | apps/web/src/app/privacy/page.tsx | 13 | ||||
| -rw-r--r-- | apps/web/src/app/privacy/privacy.ts | 49 |
2 files changed, 62 insertions, 0 deletions
diff --git a/apps/web/src/app/privacy/page.tsx b/apps/web/src/app/privacy/page.tsx new file mode 100644 index 00000000..5d0ae2b8 --- /dev/null +++ b/apps/web/src/app/privacy/page.tsx @@ -0,0 +1,13 @@ +import React from 'react'; +import Markdown from 'react-markdown'; +import { policy } from './privacy'; + +function Page() { + return ( + <div> + <Markdown>{policy}</Markdown> + </div> + ); +} + +export default Page; diff --git a/apps/web/src/app/privacy/privacy.ts b/apps/web/src/app/privacy/privacy.ts new file mode 100644 index 00000000..3e3df4fb --- /dev/null +++ b/apps/web/src/app/privacy/privacy.ts @@ -0,0 +1,49 @@ +export const policy = ` +# Privacy Policy for AnyContext + +## Introduction + +This Privacy Policy provides detailed information on the handling, storage, and protection of your personal information by AnyContext, a browser extension developed and owned by Dhravya Shah in 2024. The extension is designed to enhance your browsing experience by providing contextual information based on the content of the web pages you visit. This policy outlines the types of data collected by AnyContext, how it is used, and the measures we take to protect your privacy. + +## Information Collection + +AnyContext collects the following types of information: + +1. **Web Browsing Data**: The extension has the capability to see all websites that users visit. However, AnyContext only stores data when the user actively clicks on the extension button while browsing. The browser history is not recorded, ensuring that your browsing activities remain private. + +2. **Current Page Data**: Upon activation (click) by the user, AnyContext stores data from the current HTML page. This data is used to provide relevant contextual information based on the content of the page you are viewing. + +3. **Personal Information**: When you interact with AnyContext, we may collect personal information including but not limited to your email address, session data, name, and profile picture. This information is collected to improve your user experience and to provide personalized services. + +## Data Storage and Security + +All collected data is securely stored in a SQLite database hosted on Cloudflare D1. We employ industry-standard security measures to protect your information from unauthorized access, alteration, disclosure, or destruction. Despite our efforts, no method of transmission over the Internet or method of electronic storage is 100% secure. Therefore, while we strive to use commercially acceptable means to protect your personal information, we cannot guarantee its absolute security. + +## Use of Information + +AnyContext uses the collected information for the following purposes: + +- To provide and improve the functionality of the extension. +- To offer personalized user experiences. +- To communicate with users regarding updates, support, and promotional offers, if consented. +- To ensure the security of our services and to detect, prevent, or address technical issues. + +## Sharing of Information + +AnyContext does not sell, trade, or rent users' personal identification information to others. We may share generic aggregated demographic information not linked to any personal identification information regarding visitors and users with our business partners, trusted affiliates, and advertisers for the purposes outlined above. + +## Your Privacy Rights + +You have the right to access, update, or delete your personal information that we hold. If you wish to exercise these rights, please contact us at the details provided below. + +## Changes to This Privacy Policy + +AnyContext reserves the right to update this privacy policy at any time. When we do, we will post a notification on our website and update the date at the top of this page. We encourage users to frequently check this page for any changes to stay informed about how we are protecting the personal information we collect. Your continued use of the service after the posting of changes to this policy will be deemed your acceptance of those changes. + +## Contact Us + +If you have any questions about this Privacy Policy, the practices of this site, or your dealings with this site, please contact us at: + +- Email: [email protected] + +This document was last updated on March 2, 2024.`
\ No newline at end of file |