# Generate a boilerplate Privacy Policy HTML page for Nuuki using DM Sans privacy_policy_html = f"""
Last updated: {datetime.today().strftime('%B %d, %Y')}
This Privacy Policy explains how Nuuki collects, uses, and protects your information when you use our app and services.
We may collect the following types of information:
We use your information to:
We do not sell your personal information. We may share information with:
We implement industry-standard measures to protect your data. However, no system is completely secure.
We retain your data only as long as necessary to provide services or comply with legal obligations.
You have the right to:
Nuuki is not intended for children under 13. We do not knowingly collect personal information from children without parental consent.
We may update this Privacy Policy periodically. We will notify you of significant changes through the app or via email.
If you have any questions or concerns about this Privacy Policy, contact us at support@nuuki.app.
""" # Save the privacy policy HTML privacy_policy_path = "/mnt/data/nuuki-privacy-policy-dmsans.html" with open(privacy_policy_path, "w") as f: f.write(privacy_policy_html) privacy_policy_path