"use client"; import { usePathname } from "next/navigation"; import { Server, SlidersHorizontal } from "lucide-react"; import { PageTabs } from "@/components/common/page-tabs"; const tabs = [ { id: "env", href: "/configure/env", label: "Environment", description: "Local plugin paths and runtime flags", icon: SlidersHorizontal, }, { id: "server", href: "/configure/server", label: "Reflexio server", description: "Extraction settings from the backend", icon: Server, }, ]; export default function ConfigureLayout({ children, }: { children: React.ReactNode; }) { const pathname = usePathname(); return (