'use client'; import type { ReactNode } from 'react'; import { usePathname } from 'next/navigation'; export const AppShell = ({ children }: { children: ReactNode }) => { const pathname = usePathname(); const isWorkspace = /\/spoons\/[^/]+\/agent\/[^/]+/.test(pathname) || /^\/threads\/[^/]+/.test(pathname); return (
{children}
); };