← back to Calc 67

app/privacy/page.tsx

80 lines

export default function PrivacyPolicy() {
  return (
    <div className="min-h-screen bg-gradient-to-br from-blue-900 via-blue-700 to-red-700 text-white p-8">
      <div className="max-w-3xl mx-auto">
        <h1 className="text-4xl font-bold mb-8">Privacy Policy for 67 Calc</h1>

        <p className="text-gray-200 mb-8">Last updated: October 20, 2025</p>

        <section className="mb-8">
          <h2 className="text-2xl font-semibold mb-4">Developer Information</h2>
          <p className="text-gray-100 leading-relaxed">
            <strong>Developer:</strong> Steve Abrams Designs<br/>
            <strong>Contact:</strong> <a href="mailto:steveabramsdesigns@gmail.com" className="text-white hover:text-gray-200 underline font-bold">steveabramsdesigns@gmail.com</a>
          </p>
        </section>

        <section className="mb-8">
          <h2 className="text-2xl font-semibold mb-4">Overview</h2>
          <p className="text-gray-100 leading-relaxed">
            67 Calc is committed to protecting your privacy. This privacy policy explains
            how our application handles your information.
          </p>
        </section>

        <section className="mb-8">
          <h2 className="text-2xl font-semibold mb-4">Data Collection</h2>
          <p className="text-gray-100 leading-relaxed mb-4">
            <strong>67 Calc does not collect, store, or transmit any personal data.</strong>
          </p>
          <p className="text-gray-100 leading-relaxed">
            The app functions entirely offline and does not require any permissions or access
            to your personal information. All calculations are performed locally on your device
            and are not stored or shared.
          </p>
        </section>

        <section className="mb-8">
          <h2 className="text-2xl font-semibold mb-4">Third-Party Services</h2>
          <p className="text-gray-100 leading-relaxed">
            67 Calc does not integrate with any third-party services, analytics platforms,
            or advertising networks. Your usage of the app is completely private.
          </p>
        </section>

        <section className="mb-8">
          <h2 className="text-2xl font-semibold mb-4">Data Security</h2>
          <p className="text-gray-100 leading-relaxed">
            Since no data is collected or transmitted, there is no risk of your personal
            information being compromised through our app.
          </p>
        </section>

        <section className="mb-8">
          <h2 className="text-2xl font-semibold mb-4">Children's Privacy</h2>
          <p className="text-gray-100 leading-relaxed">
            67 Calc is safe for users of all ages. We do not collect any information
            from anyone, including children under 13.
          </p>
        </section>

        <section className="mb-8">
          <h2 className="text-2xl font-semibold mb-4">Changes to This Policy</h2>
          <p className="text-gray-100 leading-relaxed">
            We may update this privacy policy from time to time. Any changes will be posted
            on this page with an updated revision date.
          </p>
        </section>

        <section className="mb-8">
          <h2 className="text-2xl font-semibold mb-4">Contact Us</h2>
          <p className="text-gray-100 leading-relaxed">
            If you have any questions about this privacy policy, please contact us through
            our <a href="/support" className="text-white hover:text-gray-200 underline font-bold">support page</a>.
          </p>
        </section>
      </div>
    </div>
  );
}