Dashboard
Your order overview at a glance
import Link from "next/link"; import { requireCurrentUser } from "@/lib/auth"; import { getDashboardStats, getOrders } from "@/app/actions/orders"; import { Navbar } from "@/components/Navbar"; import { StatCard } from "@/components/StatCard"; import { OrderTable } from "@/components/OrderTable"; export default async function DashboardPage() { await requireCurrentUser(); const stats = await getDashboardStats(); const orders = await getOrders(); return (
Your order overview at a glance