import styles from "./DashboardLayout.module.css"; import { Footer, Header, Sidebar } from "./layout-components"; type DashboardLayoutProps = { children: React.ReactNode; }; export default function DashboardLayout({ children }: DashboardLayoutProps) { return (