diff --git a/src/app/[locale]/tamago-privacy/page.tsx b/src/app/[locale]/tamago-privacy/page.tsx index c311714..c230e05 100644 --- a/src/app/[locale]/tamago-privacy/page.tsx +++ b/src/app/[locale]/tamago-privacy/page.tsx @@ -1,18 +1,75 @@ -export default async function TamagoPrivacyPage() { +"use client"; + +export default function TamagoPrivacyPage() { + const handleEmailClick = (e: React.MouseEvent) => { + e.preventDefault(); + const user = "wjd516"; + const domain = "gmail.com"; + window.location.href = `mailto:${user}@${domain}`; + }; + return ( -
-
- Effective Date: March 19, 2026 +
+
+

Privacy Policy

+

Effective Date: March 19, 2026

- 1. Data Collection "Tamago-bot" respects your privacy. We do not collect, transmit, distribute, or sell your personal data or personally identifiable information (PII). +
+
+

+ 1 + Data Collection +

+

+ "Tamago-bot" respects your privacy. We do not collect, transmit, distribute, or sell your personal data or personally identifiable information (PII). +

+
- 2. Data Usage The extension uses the chrome.storage.local API exclusively to save the state of your virtual pixel-art pet locally on your device. This saved data includes the pet's current life stage, hunger, mood, energy, and cleanliness stats. This data is required solely to keep the virtual pet persisting across your browser sessions. +
+

+ 2 + Data Usage +

+

+ The extension uses the chrome.storage.local API exclusively to save the state of your virtual pixel-art pet locally on your device. This saved data includes the pet's current life stage and stats. This data is required solely to keep the virtual pet persisting across sessions. +

+
- 3. Third-Party Sharing No data is ever sent to external servers, cloud services, or third parties. Your data never leaves your personal device. +
+

+ 3 + Third-Party Sharing +

+

+ No data is ever sent to external servers, cloud services, or third parties. Your data never leaves your personal device. +

+
- 4. Data Retention and Deletion The saved data remains on your local browser. If you wish to delete your data, you can simply uninstall the Tamago-bot extension from your Chrome browser, which will permanently clear all associated local storage data. +
+

+ 4 + Data Retention and Deletion +

+

+ The saved data remains on your local browser. If you wish to delete your data, you can simply uninstall the extension, which will permanently clear all associated local storage data. +

+
- 5. Contact If you have any questions or concerns regarding this Privacy Policy, please contact the developer at: [EMAIL_ADDRESS]. +
+
+

5. Contact

+

+ If you have any questions or concerns regarding this Privacy Policy, please contact the developer: +

+ +
+
+
);