diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx new file mode 100644 index 0000000..211624e --- /dev/null +++ b/src/app/dashboard/page.tsx @@ -0,0 +1,87 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import React from "react"; +import Link from "next/link"; +import { LogOut, User } from "lucide-react"; + +export default function DashboardPage() { + const erpModules = [ + { name: "Inventario", href: "/dashboard/inventory" }, + { name: "Facturación", href: "/dashboard/invoicing" }, + { name: "CRM", href: "/dashboard/crm" }, + { name: "Delivery", href: "/dashboard/delivery" }, + { name: "Reportes", href: "/dashboard/reports" }, + ]; + + return ( + + +
+ {/* Dashboard Header/Navigation */} +
+ + SURTIDORA RAMONA ERP + +
+ {/* Module Navigation (simplified for now) */} + + {/* User Session Management */} +
+ + Profile + + +
+
+
+ + {/* Main Content Area */} +
+

Dashboard Principal

+

+ Bienvenido al centro de control de tu ERP. Explora los módulos para gestionar tu negocio. +

+ {/* Placeholder for ERP module content */} +
+ {erpModules.map((module) => ( + +

{module.name}

+

Gestiona y optimiza {module.name.toLowerCase()}.

+ + ))} +
+
+
+
+
+ ); +} \ No newline at end of file