// app/(dashboard)/layout.tsx
"use client";

import { useState } from "react";

interface DashboardLayoutProps {
  children: React.ReactNode;
}

export default function DashboardLayout({ children }: DashboardLayoutProps) {
  const [isSidebarOpen, setIsSidebarOpen] = useState(false);

  return (
    <div className="min-h-screen bg-[#f8fafc]">
      {/* Sidebar - will be configured per route */}
      <div className="flex">
        {/* Sidebar will be rendered by child layouts */}
        {children}
      </div>
    </div>
  );
}