{children}
import { ReactNode } from 'react'; import { Header } from './Header'; import { Sidebar } from './Sidebar'; import { useUIStore } from '@/stores/ui'; import { cn } from '@/lib/utils'; import { AstralBackground } from '../ui/AstralBackground'; interface LayoutProps { children: ReactNode; } export function Layout({ children }: LayoutProps) { const { sidebarOpen } = useUIStore(); return (