Add src/app/dashboard/page.tsx
This commit is contained in:
38
src/app/dashboard/page.tsx
Normal file
38
src/app/dashboard/page.tsx
Normal file
@@ -0,0 +1,38 @@
|
||||
"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 UserDashboard() {
|
||||
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: "Dashboard", id: "#"}]} brandName="AuraAI Dashboard" />
|
||||
<div className="pt-32 pb-20 px-6 container mx-auto min-h-[60vh]">
|
||||
<h1 className="text-4xl font-bold mb-8">User Dashboard</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">Profile Management</div>
|
||||
<div className="p-6 rounded-xl border border-neutral-200">Subscription Status</div>
|
||||
<div className="p-6 rounded-xl border border-neutral-200">Usage Analytics</div>
|
||||
<div className="p-6 rounded-xl border border-neutral-200">Refer and Earn</div>
|
||||
<div className="p-6 rounded-xl border border-neutral-200">Settings</div>
|
||||
</div>
|
||||
</div>
|
||||
<FooterMedia columns={[]} imageSrc="http://img.b2bpic.net/free-photo/student-home-taking-notes-while-watching-presentation-closeup_482257-118737.jpg" />
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user