"use client"// app/dashboard/layout.tsx import Sidebar from "@/components/dashboard/sidebar"; import Navbar from "@/components/dashboard/navbar"; import { Sparkles } from "lucide-react"; export default function DashboardLayout({ children, }: { children: React.ReactNode; }) { return (
{/* Shared Sidebar */}
{/* Shared Navbar */} {/* The active page content renders here */}
{children}
{/* Shared Ask AI Floating Button */}
); }