"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { Logo } from "../../components/shared/Logo"; const navItems = [ { label: "Dashboard", href: "/dashboard", icon: ( ), }, { label: "Editor", href: "/editor", icon: ( ), }, { label: "Apps", href: "/apps", icon: ( ), }, { label: "Tests", href: "/tests", icon: ( ), }, { label: "Deploy", href: "/deploy", icon: ( ), }, { label: "Marketplace", href: "/marketplace", icon: ( ), }, ]; export default function DashboardLayout({ children, }: { children: React.ReactNode; }) { const pathname = usePathname(); return (