'use client'; import { CustomCard } from '@components/CustomCard'; import { SchemaOrg } from '@components/SchemaOrg'; const Privacy = () => { const schema = { '@context': 'https://schema.org', '@type': 'WebSite', name: 'Hackernews Newsletter', title: 'Privacy Policy', url: `${process.env.NEXT_PUBLIC_HOME_URL}/privacy` }; const body = (

Who We Are

Data controller: {process.env.NEXT_PUBLIC_BRAND_OWNER_NAME}, an individual based in {process.env.NEXT_PUBLIC_BRAND_COUNTRY}.

Contact:{' '} {process.env.NEXT_PUBLIC_BRAND_EMAIL}

What We Collect

Your email address (required to send the newsletter).

Why We Collect It

To deliver the daily {process.env.NEXT_PUBLIC_BRAND_NAME}{' '} newsletter—a digest of top Hacker News stories with AI-generated commentary.

We do not sell products, track your activity beyond essential delivery, or share your data for marketing.

Legal Basis

Your explicit consent via double opt-in signup (you receive a confirmation email with an activation link).

Third Parties

Your Rights

Data Retention

We retain your email address only until you unsubscribe.

International Transfers

We rely on EU-approved safeguards including Standard Contractual Clauses to ensure adequate protection when using US-based services.

Changes

We may update this policy occasionally. The latest version will always be available at{' '} {process.env.NEXT_PUBLIC_HOME_URL}/privacy .

); return ( <> ); }; export default Privacy;