"use client"; import { ClosingSoonCard } from "./closing-soon"; import { CountryDistribution } from "./country-distribution"; import { DashboardHero } from "./hero"; import { NoticeTypeBreakdown } from "./notice-types"; import { ScrapePortals } from "./portals"; import { RecentTenders } from "./recent-tenders"; import { StatisticsSection } from "./statistics-section"; import { TenderStatCards } from "./stat-cards"; import { TenderTrendsChart } from "./trends-chart"; import { useDashboardData } from "./use-dashboard-data"; export function TenderDashboard() { const { isPending, total, active, closingSoon, totalValue, valueCurrency, countries, trend, recent, recentIsLoading, portals, portalsIsLoading, } = useDashboardData(); return (
{/*
*/} {/*
*/}
); }