From 3cad380c53b2d62d982fb50872dac09d91aac5f1 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 23:58:15 +0000 Subject: [PATCH] Add src/app/admin/page.tsx --- src/app/admin/page.tsx | 105 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 src/app/admin/page.tsx diff --git a/src/app/admin/page.tsx b/src/app/admin/page.tsx new file mode 100644 index 0000000..7eb5122 --- /dev/null +++ b/src/app/admin/page.tsx @@ -0,0 +1,105 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; + +export default function AdminDashboardPage() { + return ( + + + + +
+

Admin Dashboard

+

Manage your restaurant operations, view analytics, update menus, and configure system settings.

+ +
+

Restaurant Management

+

Overview of daily operations, table management, staff scheduling, and order fulfillment tracking.

+
    +
  • Manage reservations
  • +
  • Track current orders
  • +
  • Assign staff roles
  • +
+
+ +
+

Analytics & Reporting

+

Access key performance indicators, sales reports, customer insights, and operational efficiency metrics.

+
    +
  • View sales trends
  • +
  • Analyze customer feedback
  • +
  • Monitor inventory levels
  • +
+
+ +
+

Menu Management

+

Effortlessly update your food and drink menus, add new items, modify prices, and manage categories.

+
    +
  • Add/edit menu items
  • +
  • Update pricing
  • +
  • Organize categories
  • +
+
+ +
+

System Configuration

+

Configure application settings, user permissions, payment integrations, and notification preferences.

+
    +
  • Manage user accounts
  • +
  • Set payment gateways
  • +
  • Customize notifications
  • +
+
+
+
+
+ ); +}