diff --git a/app/page.tsx b/app/page.tsx index 2a82ee8..b3a4f8e 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -40,141 +40,6 @@ 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 ( @@ -349,9 +214,6 @@ export default function HomePage() { ))} - {/* * NEW: DATA COMPARISON TOGGLE */} - - {/* * NEW: COMPARISON SECTION */}