← back to Dear Bubbe Nextjs

app/privacy/page.tsx

26 lines

export default function Privacy() {
  return (
    <div className="min-h-screen bg-gradient-to-b from-blue-50 to-white p-8">
      <div className="max-w-2xl mx-auto">
        <h1 className="text-3xl font-bold mb-6">Privacy Policy</h1>
        <p className="mb-4">Last updated: November 2024</p>
        
        <h2 className="text-xl font-semibold mt-6 mb-3">1. Information We Collect</h2>
        <p className="mb-4">We collect conversation data and location (if permitted) to personalize responses.</p>
        
        <h2 className="text-xl font-semibold mt-6 mb-3">2. How We Use Information</h2>
        <p className="mb-4">Data is used to provide personalized Bubbe responses and improve the service.</p>
        
        <h2 className="text-xl font-semibold mt-6 mb-3">3. Data Protection</h2>
        <p className="mb-4">We protect your data and never sell personal information.</p>
        
        <h2 className="text-xl font-semibold mt-6 mb-3">4. Cookies</h2>
        <p className="mb-4">We use cookies to maintain your session and preferences.</p>
        
        <h2 className="text-xl font-semibold mt-6 mb-3">5. Contact</h2>
        <p className="mb-4">Questions? Visit bubbe.ai</p>
      </div>
    </div>
  );
}