"use client"; import { Sidebar } from "@/components/dashboard/sidebar"; import { ReactNode } from "react"; interface PageLayoutProps { children: ReactNode; } export function PageLayout({ children }: PageLayoutProps) { return (