@@ -612,7 +615,7 @@ export default function BookNowPage() {
"Submit Booking Request"
)}
-
We'll review your request and get back to you within 24 hours
to confirm your appointment.
@@ -622,11 +625,11 @@ export default function BookNowPage() {
{/* Contact Information */}
-
+
Prefer to book by phone?{" "}
Call us at (954) 807-3027
diff --git a/app/(user)/user/dashboard/page.tsx b/app/(user)/user/dashboard/page.tsx
index 63064aa..7f8daed 100644
--- a/app/(user)/user/dashboard/page.tsx
+++ b/app/(user)/user/dashboard/page.tsx
@@ -19,6 +19,7 @@ import {
} from "lucide-react";
import Link from "next/link";
import { Navbar } from "@/components/Navbar";
+import { useAppTheme } from "@/components/ThemeProvider";
interface Booking {
ID: number;
@@ -31,6 +32,8 @@ interface Booking {
}
export default function UserDashboard() {
+ const { theme } = useAppTheme();
+ const isDark = theme === "dark";
const [bookings, setBookings] = useState([]);
const [loading, setLoading] = useState(true);
@@ -125,7 +128,7 @@ export default function UserDashboard() {
];
return (
-
+
{/* Main Content */}
@@ -133,10 +136,10 @@ export default function UserDashboard() {
{/* Welcome Section */}
-
+
Welcome Back!
-
+
Here's an overview of your appointments
@@ -144,7 +147,7 @@ export default function UserDashboard() {