"use client"; import { Header } from "./Header"; import { Sidebar } from "./Sidebar"; interface DashboardProps { children: React.ReactNode; } export function Dashboard({ children }: DashboardProps) { return (