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