This commit is contained in:
NotII
2025-04-04 12:51:16 +01:00
parent e2c16d94a6
commit d2fd47ff36
3 changed files with 28 additions and 11 deletions

View File

@@ -1,6 +1,9 @@
import Dashboard from "@/components/dashboard/dashboard";
import Content from "@/components/dashboard/content";
import { fetchServer } from '@/lib/server-service';
import { performance } from 'perf_hooks';
import { Info } from 'lucide-react';
import packageJson from '../../package.json';
// ✅ Corrected Vendor Type
interface Vendor {
@@ -23,16 +26,28 @@ interface OrderStats {
}
export default async function DashboardPage() {
const startTime = performance.now();
const [userResponse, orderStats] = await Promise.all([
fetchServer<User>("/auth/me"),
fetchServer<OrderStats>("/orders/stats"),
]);
const endTime = performance.now();
const generationTime = (endTime - startTime).toFixed(2);
const panelVersion = packageJson.version;
const vendor = userResponse.vendor;
return (
<Dashboard>
<Content username={vendor.username} orderStats={orderStats} />
<div className="fixed bottom-2 right-2 text-xs text-muted-foreground bg-background/80 backdrop-blur-sm px-2 py-1 rounded border border-border/50 z-50 flex items-center gap-1.5">
<Info size={12} className="text-muted-foreground/80" />
<span>v{panelVersion}</span>
<span className="text-muted-foreground/50">|</span>
<span>Generated in {generationTime}ms</span>
</div>
</Dashboard>
);
}