dashboard-5
efferd-/dashboard-5FreeBlock
Web analytics dashboard with visitors chart, live users, top pages, traffic sources, and Core Web Vitals.
Live preview
live · rendered by the registry
Rendered by efferd on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add http://efferd.com/r/dashboard-5.jsonSource
1"use client";23import {4 Card,5 CardContent,6 CardDescription,7 CardHeader,8 CardTitle,9} from "@/components/ui/card";10import {11 ShareBarList,12 ShareBarListContent,13 ShareBarListFill,14 ShareBarListItem,15 ShareBarListLabel,16 ShareBarListValue,17} from "@/components/share-bar-list";1819const segments = [20 { label: "Returning visitors", share: 54 },21 { label: "New visitors", share: 41 },22 { label: "Logged-in users", share: 5 },23] as const;2425export function AudienceMix() {26 return (27 <Card className="dark:bg-transparent">28 <CardHeader className="border-b">29 <CardTitle className="text-balance">Audience mix</CardTitle>30 <CardDescription className="text-pretty">31 Session split by familiarity in the last 12 months.32 </CardDescription>33 </CardHeader>34 <CardContent className="p-0 py-1">35 <ShareBarList aria-label="Audience segments by share of sessions">36 {segments.map((row) => (37 <ShareBarListItem key={row.label} value={row.share}>38 <ShareBarListContent>39 <ShareBarListLabel>{row.label}</ShareBarListLabel>40 <ShareBarListValue>{row.share}%</ShareBarListValue>41 </ShareBarListContent>42 <ShareBarListFill />43 </ShareBarListItem>44 ))}45 </ShareBarList>46 </CardContent>47 </Card>48 );49}
What it pulls in
Other registry items
Files it writes
More from efferd
All 201 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| app-shell-1app-shell-1 | efferd | Blocks | Paid | no deps · 7 files | |
| app-shell-10app-shell-10 | efferd | Blocks | Paid | 1 dep · 13 files | |
| app-shell-2app-shell-2 | efferd | Blocks | Paid | no deps · 9 files | |
| app-shell-3app-shell-3 | efferd | Blocks | Paid | no deps · 9 files | |
| app-shell-4app-shell-4 | efferd | Blocks | Paid | no deps · 9 files | |
| app-shell-5app-shell-5 | efferd | Blocks | Free | 1 dep · 9 files | |
| app-shell-6app-shell-6 | efferd | Blocks | Paid | no deps · 11 files | |
| app-shell-7app-shell-7 | efferd | Blocks | Paid | no deps · 12 files |
