'use client' import { ExternalLink } from 'lucide-react' import { useRedirectIfNotAuth } from '@/utils/auth' export default function PrivacySettingsPage() { const userInfo = useRedirectIfNotAuth() if (!userInfo) { return (

Loading...

) } const tabs = [ { id: 'profile', name: 'Personal profile', href: '/settings' }, { id: 'privacy', name: 'Data & privacy', href: '/settings/privacy' }, { id: 'billing', name: 'Billing', href: '/settings/billing' }, ] return (

Settings

Personal settings

Privacy Policy

Understand how we collect, use, and protect your personal information.

Terms of Service

Understand your rights and responsibilities when using our platform.

) }