diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx new file mode 100644 index 0000000..88e8fc4 --- /dev/null +++ b/src/app/dashboard/page.tsx @@ -0,0 +1,16 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; + +export default function DashboardPage() { + return ( + + +
+

Welcome to your Dashboard

+

Access premium content here.

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