'use client'
import { useRedirectIfNotAuth } from '@/utils/auth'
export default function BillingPage() {
const userInfo = useRedirectIfNotAuth()
if (!userInfo) {
return (
)
}
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
Cl*ely For Free
)
}