'use client'; import { Separator } from '@/components/ui/separator'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import Script from 'next/script'; export default function PersonalAccountSettingsPage({ children, }: { children: React.ReactNode; }) { const pathname = usePathname(); const items = [ // { name: "Profile", href: "/settings" }, // { name: "Teams", href: "/settings/teams" }, { name: 'Billing', href: '/settings/billing' }, ]; return ( <>