This commit is contained in:
nBiqoz
2025-10-06 19:16:20 +02:00
parent 96dd721fcb
commit 0f2adca44a
23 changed files with 1569 additions and 248 deletions

View File

@@ -2,6 +2,7 @@ import { Suspense } from "react";
import { Card, CardContent } from "@/components/ui/card";
import { UsageAnalytics } from "@/components/dashboard/usage-analytics";
import { RecentTransactions } from "@/components/dashboard/recent-transactions";
import { BarChart3 } from "lucide-react";
function AnalyticsSkeleton() {
@@ -39,7 +40,7 @@ export default function AnalyticsPage() {
<div className="space-y-6">
{/* Analytics des utilisateurs */}
<UsageAnalytics />
{/* Transactions récentes - toute la largeur */}
<RecentTransactions />
</div>