Skip to content

Commit

Permalink
feat: add privacy policy page
Browse files Browse the repository at this point in the history
  • Loading branch information
hjiangsu committed Feb 5, 2025
1 parent d30ebf1 commit 52fc325
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import './index.css';
import Landing from './pages/landing';
import Docs from './pages/docs';
import Downloads from './pages/downloads';
import PrivacyPolicy from './pages/privacy_policy';

const router = createBrowserRouter([
{
Expand All @@ -27,6 +28,10 @@ const router = createBrowserRouter([
{
path: "/docs",
element: <Docs />,
},
{
path: "/privacy-policy",
element: <PrivacyPolicy />,
}
],
},
Expand Down
33 changes: 33 additions & 0 deletions src/markdown/privacy_policy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
## Privacy Policy for Thunder

This Privacy Policy explains how Thunder ("the App") handles your personal information. Please read this policy carefully to understand our practices regarding your data.

### Data Collection and Usage
1.1. Non-Personal Data
The Thunder app does not collect any personally identifiable information (PII) or personal data during its usage. We do not track, store, or transmit any data that can be used to identify individual users.

1.2. Local Storage
All data generated or entered within the Thunder app is stored locally on your device. This includes any files, documents, settings, or other information created or accessed through the app. We do not upload or sync your data to any external servers or cloud services.

### Permissions
2.1. Device Permissions
The Thunder app requires certain permissions to access device features necessary for its functionality. These permissions may include access to the device's storage or other relevant hardware components. However, these permissions are solely used within the app and do not involve the collection or transmission of data to external sources.

### Data Security
3.1. Encryption
To ensure the security of your data, the Thunder app may employ encryption technologies to protect any information stored on your device. This helps safeguard your data from unauthorized access or disclosure.

3.2. App Deletion
When you uninstall or delete the Thunder app from your device, all data associated with the app will be permanently deleted from your device. We do not retain any of your data once the app is removed.

### Third-Party Services
4.1. External Links
The Thunder app may contain links to external websites or services. This Privacy Policy solely applies to the Thunder app and its usage, and we are not responsible for the privacy practices or content of any third-party websites or services. We encourage you to review the privacy policies of those third-party services before providing any personal information.

### Changes to the Privacy Policy
We may update this Privacy Policy from time to time to reflect any changes in our practices or legal requirements. We will notify you about significant changes by providing a prominent notice within the app or by other means. We encourage you to review this Privacy Policy periodically.

### Contact Us
If you have any questions, concerns, or suggestions regarding this Privacy Policy or our privacy practices, please contact us at [email protected].

Last updated: 2023-07-10
17 changes: 17 additions & 0 deletions src/pages/privacy_policy.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import ReactMarkdown from 'react-markdown';
import remarkGfm from 'remark-gfm';

import privacyPolicy from '@/markdown/privacy_policy.md?raw';
import { PageHeader } from '@/components/custom/page-header';

function PrivacyPolicy() {
return (
<PageHeader>
<div className="container relative pb-8 max-w-screen-2xl items-center">
<ReactMarkdown className="prose dark:prose-invert" remarkPlugins={[remarkGfm]}>{privacyPolicy}</ReactMarkdown>
</div>
</PageHeader>
)
}

export default PrivacyPolicy;

0 comments on commit 52fc325

Please sign in to comment.