← back to Boomer Calculator
app/privacy/page.tsx
80 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: October 20, 2025</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>Boomer Calc does not collect, store, or transmit any personal data.</strong>
</p>
<p className="text-gray-300 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-300 leading-relaxed">
Boomer 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-300 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-300 leading-relaxed">
Boomer 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-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>
);
}