'use client'; import React from 'react'; export interface NavItem { label: string; href: string; isActive?: boolean; } export interface CollapsedNavProps { items: NavItem[]; chaosLevel?: 'low' | 'medium' | 'high'; className?: string; } export const CollapsedNavTailwind = ({ items, className = '' }: CollapsedNavProps) => { return ( ); };