"use client" import { Button } from "@ui/components/button" import { useRouter, usePathname } from "next/navigation" import { cn } from "@repo/lib/utils" export default function SettingsPageLayout({ children, }: { children: React.ReactNode }) { const router = useRouter() const pathname = usePathname() const navItems = [ { label: "Profile", path: "/settings" }, { label: "Integrations", path: "/settings/integrations" }, { label: "Billing", path: "/settings/billing" }, { label: "Support", path: "/settings/support" }, ] return (