From 51e9681701e87af3007f0580701c2bb76f2f4b31 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 28 Apr 2026 02:03:39 +0000 Subject: [PATCH 1/2] Update src/app/admin/page.tsx --- src/app/admin/page.tsx | 58 ++++++++++++++++++++++++------------------ 1 file changed, 33 insertions(+), 25 deletions(-) diff --git a/src/app/admin/page.tsx b/src/app/admin/page.tsx index 0c49483..a74edae 100644 --- a/src/app/admin/page.tsx +++ b/src/app/admin/page.tsx @@ -6,9 +6,7 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav import FooterBase from '@/components/sections/footer/FooterBase'; import { useState } from 'react'; -export default function AdminDashboardPage() { - const [activeTab, setActiveTab] = useState('appointments'); - +export default function AdminDashboard() { return ( -
-

Dashboard: {activeTab.charAt(0).toUpperCase() + activeTab.slice(1)}

-
-
-

Admin management tools for {activeTab} will be implemented here.

+
+

Admin Dashboard

+
+
+

Scheduling

+

Manage operating hours.

+
+
+

Calendar View

+

View upcoming bookings.

+
+
+

Appointments

+

Active booking requests.

+
+
+

Settings

+

Booking administration.

); -} +} \ No newline at end of file From 420716ed8f045e2e5a497e795221c24bfcbed7fb Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 28 Apr 2026 02:03:39 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 5be458c..d8036e9 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -11,11 +11,11 @@ --background-accent: #ffffff; */ --background: #000000; - --card: #121212; - --foreground: #ffffff; + --card: #1A1A1A; + --foreground: #FFFFFF; --primary-cta: #FFD700; --primary-cta-text: #000000; - --secondary-cta: #1A1A1A; + --secondary-cta: #262626; --secondary-cta-text: #FFFFFF; --accent: #B8860B; --background-accent: #262626;