37 lines
1.7 KiB
TypeScript
37 lines
1.7 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
|
|
|
export default function AdminDashboard() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="bounce-effect"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="rounded"
|
|
contentWidth="mediumSmall"
|
|
sizing="mediumSizeLargeTitles"
|
|
background="none"
|
|
cardStyle="subtle-shadow"
|
|
primaryButtonStyle="diagonal-gradient"
|
|
secondaryButtonStyle="solid"
|
|
headingFontWeight="extrabold"
|
|
>
|
|
<ReactLenis root>
|
|
<NavbarStyleFullscreen navItems={[{name: "Admin Panel", id: "#"}]} brandName="AuraAI Admin" />
|
|
<div className="pt-32 pb-20 px-6 container mx-auto min-h-[60vh]">
|
|
<h1 className="text-4xl font-bold mb-8">Admin Panel</h1>
|
|
<div className="grid gap-8 grid-cols-1 md:grid-cols-2 lg:grid-cols-3">
|
|
<div className="p-6 rounded-xl border border-neutral-200">User Management</div>
|
|
<div className="p-6 rounded-xl border border-neutral-200">Platform Analytics</div>
|
|
<div className="p-6 rounded-xl border border-neutral-200">Payment Tracking</div>
|
|
<div className="p-6 rounded-xl border border-neutral-200">System Settings</div>
|
|
</div>
|
|
</div>
|
|
<FooterMedia columns={[]} imageSrc="http://img.b2bpic.net/free-photo/student-home-taking-notes-while-watching-presentation-closeup_482257-118737.jpg?_wi=3" />
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
} |