import Link from "next/link"; import { AppSidebar } from "@/components/app-sidebar"; export default function TreesLayout({ children }: { children: React.ReactNode }) { return (
{/* Compact bar for small screens (full sidebar is md+). */}
{/* eslint-disable-next-line @next/next/no-img-element */} Provenance Trees
{children}
); }