Refactor: Implement DashboardLayout, fix mobile nav, and resolve scroll issues

This commit is contained in:
ren
2026-01-29 14:41:46 +01:00
parent 0a04e0817d
commit 811c78ffa5
171 changed files with 1678 additions and 23983 deletions

View File

@@ -1,6 +1,7 @@
"use client";
import { createContext, useContext, useState, ReactNode } from "react";
import { DataSync } from "@/components/DataSync";
interface SidebarContextType {
isOpen: boolean;
@@ -27,6 +28,7 @@ export function Providers({ children }: { children: ReactNode }) {
open: openSidebar,
}}
>
<DataSync />
{children}
</SidebarContext.Provider>
);