← back to Dear Bubbe Nextjs

app/privacy/page.tsx

42 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. Advertising</h2>
        <p className="mb-4">
          We display advertising through Google AdSense. Third-party vendors, including Google,
          use cookies to serve ads based on your prior visits to this and other websites.
          Google&rsquo;s use of advertising cookies enables it and its partners to serve ads to
          you based on your visit to bubbe.ai and/or other sites on the Internet. You may opt
          out of personalized advertising by visiting{' '}
          <a className="underline" href="https://www.google.com/settings/ads" target="_blank" rel="noopener noreferrer">Google Ads Settings</a>,
          or opt out of third-party vendors&rsquo; use of cookies at{' '}
          <a className="underline" href="https://www.aboutads.info/choices/" target="_blank" rel="noopener noreferrer">aboutads.info</a>{' '}
          (or{' '}
          <a className="underline" href="https://www.youronlinechoices.eu/" target="_blank" rel="noopener noreferrer">youronlinechoices.eu</a>{' '}
          in the EEA/UK). Where required by law, we request consent before setting non-essential
          advertising cookies.
        </p>

        <h2 className="text-xl font-semibold mt-6 mb-3">6. Contact</h2>
        <p className="mb-4">Questions? Visit bubbe.ai</p>
      </div>
    </div>
  );
}