diff --git a/app/page.tsx b/app/page.tsx index 9c2e64e..2a82ee8 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -40,6 +40,142 @@ function DashboardPreview() { ) } +function DataComparisonSection() { + const [activeTab, setActiveTab] = useState<'them' | 'us'>('us') + + return ( +
+
+

What gets tracked?

+

See the difference between invasive tracking and privacy-first analytics.

+
+ +
+
+ + +
+
+ +
+
+
+ {activeTab === 'them' ? ( + <> +
+
+ + IP Address +
+
+ + Exact Location (GPS) +
+
+ + Device Fingerprint +
+
+ + Advertising ID +
+
+
+
+ + Cross-site Tracking +
+
+ + Personal Browsing History +
+
+ + Demographics (Age, Gender) +
+
+ + Interest Categories +
+
+ + ) : ( + <> +
+
+ + Page URL +
+
+ + Referrer Source +
+
+ + Country (Approximate) +
+
+
+
+ + Device Type (Mobile/Desktop) +
+
+ + Browser & OS +
+
+ + Screen Size +
+
+ + )} +
+
+ + {/* Warning/Success Banner at bottom */} +
+ {activeTab === 'them' + ? "⚠️ This data is sold to advertisers and used to profile your users." + : "🛡️ This data is aggregated and never linked to individual users." + } +
+
+
+ ) +} + function ComparisonSection() { return (
@@ -213,6 +349,9 @@ export default function HomePage() { ))}
+ {/* * NEW: DATA COMPARISON TOGGLE */} + + {/* * NEW: COMPARISON SECTION */}