import Providers from "@/app/providers"; import Sidebar from "./Sidebar"; export const metadata = { title: "Dashboard | Aystone" }; export default function DashboardLayout({ children, }: { children: React.ReactNode; }) { return (
{children}
); }