diff --git a/apps/web/src/app/privacy/page.tsx b/apps/web/src/app/privacy/page.tsx new file mode 100644 index 0000000..640a7ef --- /dev/null +++ b/apps/web/src/app/privacy/page.tsx @@ -0,0 +1,133 @@ +import { Header } from '@/components/marketing/header' +import { Footer } from '@/components/marketing/footer' + +export const metadata = { + title: 'Privacy Policy | data-peek', + description: 'Privacy policy for data-peek desktop application', +} + +export default function PrivacyPage() { + return ( +
+
+ +
+
+

+ Privacy Policy +

+ +

+ Last updated: December 3, 2025 +

+ +
+
+

+ Overview +

+

+ data-peek is a desktop application that runs locally on your computer. We are committed to protecting your privacy and being transparent about how we handle data. +

+
+ +
+

+ Data Collection +

+
+

+ Database Connections: Your database connection credentials (host, port, username, password) are stored locally on your device using encrypted storage. They are never transmitted to our servers. +

+

+ Query Data: All SQL queries and results remain on your local machine. We do not have access to your database content or query history. +

+

+ AI Features: If you use the AI Assistant feature, your schema information and queries are sent to the AI provider you configure (OpenAI, Anthropic, Google, Groq, or Ollama). We do not store or process this data ourselves. +

+

+ License Information: When you activate a Pro license, we store your email address and license key on our servers to manage your subscription. +

+
+
+ +
+

+ Analytics +

+

+ Our website uses privacy-focused analytics to understand general usage patterns. We do not track individual users or collect personally identifiable information through analytics. The desktop application does not include any telemetry or analytics. +

+
+ +
+

+ Third-Party Services +

+
+

We use the following third-party services:

+
    +
  • Dodo Payments: For processing license purchases
  • +
  • Resend: For sending license key emails
  • +
  • GitHub: For hosting downloads and releases
  • +
+

+ Each service has its own privacy policy that governs how they handle your data. +

+
+
+ +
+

+ Data Security +

+

+ Database credentials stored in the desktop app are encrypted using your operating system's secure storage (Keychain on macOS, Credential Manager on Windows, Secret Service on Linux). We use industry-standard encryption for all data transmitted to our servers. +

+
+ +
+

+ Your Rights +

+
+

You have the right to:

+
    +
  • Request deletion of your account and associated data
  • +
  • Export your license information
  • +
  • Opt out of marketing communications
  • +
+
+
+ +
+

+ Contact +

+

+ For privacy-related questions or requests, contact us at{' '} + + hello@datapeek.dev + +

+
+ +
+

+ Changes to This Policy +

+

+ We may update this privacy policy from time to time. We will notify users of any material changes by posting the new policy on this page with an updated revision date. +

+
+
+
+
+ +
+ ) +} diff --git a/apps/web/src/app/terms/page.tsx b/apps/web/src/app/terms/page.tsx new file mode 100644 index 0000000..912ed62 --- /dev/null +++ b/apps/web/src/app/terms/page.tsx @@ -0,0 +1,155 @@ +import { Header } from '@/components/marketing/header' +import { Footer } from '@/components/marketing/footer' + +export const metadata = { + title: 'Terms of Service | data-peek', + description: 'Terms of service for data-peek desktop application', +} + +export default function TermsPage() { + return ( +
+
+ +
+
+

+ Terms of Service +

+ +

+ Last updated: December 3, 2025 +

+ +
+
+

+ 1. Acceptance of Terms +

+

+ By downloading, installing, or using data-peek, you agree to be bound by these Terms of Service. If you do not agree to these terms, do not use the software. +

+
+ +
+

+ 2. License Grant +

+
+

+ Free Version: data-peek is free for personal, non-commercial use. You may use the free version on unlimited devices for personal projects. +

+

+ Pro License: Commercial use requires a valid Pro license. Each Pro license allows activation on up to 3 devices and includes 1 year of software updates from the date of purchase. +

+

+ After the update period expires, you may continue using the version you have, but new updates will require a license renewal. +

+
+
+ +
+

+ 3. Restrictions +

+
+

You may not:

+
    +
  • Redistribute, sublicense, or resell the software
  • +
  • Reverse engineer, decompile, or disassemble the software
  • +
  • Remove or alter any proprietary notices or labels
  • +
  • Use the software to violate any applicable laws
  • +
  • Share your license key with others outside your authorized devices
  • +
+
+
+ +
+

+ 4. Your Data +

+

+ data-peek operates locally on your device. You are solely responsible for your database connections, credentials, and any data you access through the software. We do not have access to your databases or the data you query. +

+
+ +
+

+ 5. AI Features +

+

+ The AI Assistant feature connects to third-party AI providers. You are responsible for complying with the terms of service of any AI provider you use. Be mindful of what data you send to AI providers, especially if you handle sensitive or regulated data. +

+
+ +
+

+ 6. Disclaimer of Warranties +

+

+ THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. WE DO NOT WARRANT THAT THE SOFTWARE WILL BE ERROR-FREE OR UNINTERRUPTED. YOU USE THE SOFTWARE AT YOUR OWN RISK. +

+
+ +
+

+ 7. Limitation of Liability +

+

+ TO THE MAXIMUM EXTENT PERMITTED BY LAW, WE SHALL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES, OR ANY LOSS OF PROFITS OR REVENUE, WHETHER INCURRED DIRECTLY OR INDIRECTLY, OR ANY LOSS OF DATA. +

+
+ +
+

+ 8. Refund Policy +

+

+ We offer refunds within 14 days of purchase if you are not satisfied with the software. Contact us at{' '} + + hello@datapeek.dev + {' '} + to request a refund. +

+
+ +
+

+ 9. Termination +

+

+ We reserve the right to terminate or suspend your license if you violate these terms. Upon termination, you must cease all use of the software and destroy any copies in your possession. +

+
+ +
+

+ 10. Changes to Terms +

+

+ We may modify these terms at any time. Continued use of the software after changes constitutes acceptance of the new terms. We will make reasonable efforts to notify users of significant changes. +

+
+ +
+

+ 11. Contact +

+

+ For questions about these terms, contact us at{' '} + + hello@datapeek.dev + +

+
+
+
+
+ +
+ ) +}