- {children}
- {children}
{text}
} 17 |19 | {description} 20 |
21 |20 | {subtitle} 21 |
22 | ) : null} 23 |16 | Page not found. Back to{" "} 17 | 21 | Homepage 22 | 23 | . 24 |
25 |{description}
27 |{text}
35 | )} 36 |46 | {authors[username].name} 47 |
48 |49 | @{authors[username].twitter} 50 |
51 |{page.description}
64 | )} 65 |41 | {t("enterEmail")} 42 |
43 |48 | 52 | {t("noAccount")} 53 | 54 |
55 |36 | {item.name} 37 |
38 |39 | {item.job} 40 |
41 |{t(`reviews.${item.id}`)}44 |
42 | {JSON.stringify(data, null, 2)}
43 |
44 | ),
45 | });
46 | }
47 |
48 | return (
49 |
76 |
77 | );
78 | }
79 |
--------------------------------------------------------------------------------
/src/components/charts/radar-chart-simple.tsx:
--------------------------------------------------------------------------------
1 | "use client";
2 |
3 | import { TrendingUp } from "lucide-react";
4 | import { PolarAngleAxis, PolarGrid, Radar, RadarChart } from "recharts";
5 |
6 | import {
7 | Card,
8 | CardContent,
9 | CardDescription,
10 | CardFooter,
11 | CardHeader,
12 | CardTitle,
13 | } from "@/components/ui/card";
14 | import {
15 | ChartConfig,
16 | ChartContainer,
17 | ChartTooltip,
18 | ChartTooltipContent,
19 | } from "@/components/ui/chart";
20 |
21 | const chartData = [
22 | { month: "January", desktop: 186 },
23 | { month: "February", desktop: 305 },
24 | { month: "March", desktop: 237 },
25 | { month: "April", desktop: 273 },
26 | { month: "May", desktop: 209 },
27 | { month: "June", desktop: 214 },
28 | ];
29 |
30 | const chartConfig = {
31 | desktop: {
32 | label: "Desktop",
33 | color: "hsl(var(--chart-1))",
34 | },
35 | } satisfies ChartConfig;
36 |
37 | export function RadarChartSimple() {
38 | return (
39 |