import Image from "next/image"; import { StatisticsBlock } from "@/components/blocks/statistics-block"; import { BlockBadge, WelcomeBlock } from "@/components/blocks/welcome-block"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import RevinueBarChart from "@/components/revenue-bar-chart"; import DashboardDropdown from "@/components/dashboard-dropdown"; import OverviewChart from "./components/overview-chart"; import CompanyTable from "./components/company-table"; import RecentActivity from "./components/recent-activity"; import MostSales from "./components/most-sales"; import OverviewRadialChart from "./components/overview-radial"; import { useTranslations } from "next-intl"; const DashboardPage = () => { const t = useTranslations("AnalyticsDashboard"); return (
{t("widget_title")}

{t("widget_desc")}

{t("widget_badge")} Description of the image
{t("overview_circle_chart_title")}
{t("company_table_title")}
{t("recent_activity_table_title")}
{t("overview_circle_chart_title")}

{t("invested_amount")}

$8264.35
+0.001.23 (0.2%)

{t("invested_amount")}

$8264.35

{t("invested_amount")}

$8264.35
); } export default DashboardPage;