← back to Boomer Calculator

app/privacy/page.tsx

92 lines

export default function PrivacyPolicy() {
  return (
    <div className="min-h-screen bg-gray-900 text-gray-100 p-8">
      <div className="max-w-3xl mx-auto">
        <h1 className="text-4xl font-bold mb-8">Privacy Policy for Boomer Calc</h1>

        <p className="text-gray-400 mb-8">Last updated: September 11, 2026</p>

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

        <section className="mb-8">
          <h2 className="text-2xl font-semibold mb-4">Overview</h2>
          <p className="text-gray-300 leading-relaxed">
            Boomer 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-300 leading-relaxed mb-4">
            <strong>The numbers you enter are processed locally on your device.</strong>
          </p>
          <p className="text-gray-300 leading-relaxed">
            Calculator inputs are not sent to us or saved by the calculator. The calculator
            does not require an account. Advertising uses network connections and may involve
            device and usage data as described below; the app as a whole is not data-free.
          </p>
        </section>

        <section className="mb-8">
          <h2 className="text-2xl font-semibold mb-4">Third-Party Services</h2>
          <p className="text-gray-300 leading-relaxed mb-4">
            The calculator itself does not collect, store, or transmit any of the numbers you
            enter &mdash; those stay on your device and are never sent anywhere.
          </p>
          <p className="text-gray-300 leading-relaxed">
            Boomer Calc is supported by advertising. The iOS app uses banner ads served by <strong>Google AdMob</strong>; the
            website at boomercalc.com displays ads served by <strong>Google AdSense</strong>.
            Google&apos;s advertising services may process IP addresses, device identifiers,
            diagnostic and performance information, and ad interactions to deliver and measure
            advertising. On the web, advertising services may also use cookies or similar
            technologies. See <a href="https://policies.google.com/privacy" className="text-blue-400 hover:text-blue-300 underline">Google&apos;s Privacy Policy</a> and
            its <a href="https://policies.google.com/technologies/partner-sites" className="text-blue-400 hover:text-blue-300 underline">information about partner apps and sites</a>.
          </p>
          <p className="text-gray-300 leading-relaxed mt-4">
            The iOS app includes SKAdNetwork advertising-attribution configuration and requests
            tracking authorization through Apple&apos;s App Tracking Transparency system. Whether
            a prompt appears depends on your device settings and previous permission choices.
            You can review tracking permissions in iOS Settings &rarr; Privacy &amp; Security
            &rarr; Tracking. Declining tracking permission does not mean that advertising
            services collect no data or that all ads disappear.
          </p>
        </section>

        <section className="mb-8">
          <h2 className="text-2xl font-semibold mb-4">Data Security</h2>
          <p className="text-gray-300 leading-relaxed">
            Calculator inputs are processed on your device. Data handled by Google&apos;s
            advertising services is subject to Google&apos;s privacy practices and applicable
            device permissions. If you contact us for support, we receive the information you
            choose to include in your message. Please do not send sensitive information that is
            unnecessary for your support request.
          </p>
        </section>

        <section className="mb-8">
          <h2 className="text-2xl font-semibold mb-4">Changes to This Policy</h2>
          <p className="text-gray-300 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-300 leading-relaxed">
            If you have any questions about this privacy policy, please contact us through
            our <a href="/support" className="text-blue-400 hover:text-blue-300 underline">support page</a>.
          </p>
        </section>
      </div>
    </div>
  );
}