// app/tabs/layout.tsx "use client"; import Link from "next/link"; import { ReactNode } from "react"; import { usePathname } from "next/navigation"; import clsx from "clsx"; import { House, LayoutGrid, Bookmark, CircleUser, Settings, } from "lucide-react"; const tabs = [ { name: "Home", href: "/home", component: }, { name: "Unit", href: "/unit", component: }, { name: "Bookmark", href: "/bookmark", component: }, { name: "Settings", href: "/settings", component: }, ]; export default function TabsLayout({ children }: { children: ReactNode }) { const pathname = usePathname(); return (
{children}
); }