"use client"; import Image from "next/image"; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card"; import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"; import { Overview } from "@/components/ui/overview"; import { RecentSales } from "@/components/recent-sales"; import { useState } from "react"; export default function Dashboard() { const [graphType, setGraphType] = useState("line"); return ( <>
Dashboard Dashboard

Dashboard

Overview Analytics Reports Notifications
Total Revenue
$45,231.89

+20.1% from last month

Subscriptions
+2350

+180.1% from last month

Sales
+12,234

+19% from last month

Active Now
+573

+201 since last hour

Overview {/* tab to switch between line and bar graph */} setGraphType("line")} > Line setGraphType("bar")} > Bar Recent Sales You made 265 sales this month.
); }