import type { Metadata } from "next"; import { Suspense } from "react"; import CardWrapper from "@/app/ui/dashboard/cards"; import LatestInvoices from "@/app/ui/dashboard/latest-invoices"; import RevenueChart from "@/app/ui/dashboard/revenue-chart"; import { lusitana } from "@/app/ui/fonts"; import { CardSkeleton, LatestInvoicesSkeleton, RevenueChartSkeleton, } from "@/app/ui/skeletons"; export const metadata: Metadata = { title: "Dashboard", }; export default async function Page() { return (

Dashboard

}>
}> }>
); }