Update src/app/dashboard/page.tsx
This commit is contained in:
@@ -3,7 +3,6 @@
|
||||
import { useState } from "react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import { CheckCircle, Clock, AlertCircle } from "lucide-react";
|
||||
|
||||
export default function DashboardPage() {
|
||||
const [quotes, setQuotes] = useState([
|
||||
@@ -17,14 +16,27 @@ export default function DashboardPage() {
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Dashboard", id: "/dashboard" }
|
||||
]}
|
||||
brandName="MAXORA"
|
||||
/>
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Dashboard", id: "/dashboard" }
|
||||
]}
|
||||
brandName="MAXORA"
|
||||
/>
|
||||
</div>
|
||||
<main className="container mx-auto py-20 px-6">
|
||||
<h1 className="text-4xl font-bold mb-10">Gestion des Devis</h1>
|
||||
<div className="grid gap-6">
|
||||
|
||||
Reference in New Issue
Block a user