Metrics 01
ncdai/metrics-01UnverifiedBlock
A metrics section with a line chart.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/exekartik/exeKartik/main/metrics-01.jsonSource
1import { format } from "date-fns"23import Grid from "@/components/charts/grid"4import LineChart, { Line } from "@/components/charts/line-chart"5import { ChartTooltip } from "@/components/charts/tooltip"6import {7 Metric,8 MetricLabel,9 MetricValue,10} from "@/registry/blocks/metrics-01/components/metric"1112export function Metrics01() {13 return (14 <div className="max-w-screen overflow-x-clip">15 <div className="container mx-auto px-4">16 <div className="border-x border-line py-8">17 <div className="screen-line-top screen-line-bottom">18 <h2 className="screen-line-bottom ml-4 font-heading text-3xl font-medium tracking-tight">19 Insights20 <sup className="top-[-0.75em] ml-1 text-sm font-medium tracking-normal text-muted-foreground">21 ({format(new Date(data.startDate), "dd.MM")} –{" "}22 {format(new Date(data.endDate), "dd.MM")})23 </sup>24 </h2>2526 <div className="relative">27 <div className="pointer-events-none absolute inset-0 -z-1 grid grid-cols-2 md:grid-cols-4">28 <div className="border-r border-line" />29 <div className="border-r border-line max-md:hidden" />30 <div className="border-r border-line max-md:hidden" />31 </div>3233 <dl className="grid grid-cols-2 md:grid-cols-4">34 <Metric>35 <MetricLabel>Unique visitors</MetricLabel>36 <MetricValue>37 {data.summary.uniqueVisitors.toLocaleString()}38 </MetricValue>39 </Metric>4041 <Metric>42 <MetricLabel>Sessions</MetricLabel>43 <MetricValue>44 {data.summary.totalSessions.toLocaleString()}45 </MetricValue>46 </Metric>4748 <Metric>49 <MetricLabel>Views</MetricLabel>50 <MetricValue>51 {data.summary.totalScreenViews.toLocaleString()}52 </MetricValue>53 </Metric>5455 <Metric>56 <MetricLabel>Session duration</MetricLabel>57 <MetricValue>58 {formatDuration(data.summary.avgSessionDuration)}59 </MetricValue>60 </Metric>61 </dl>62 </div>6364 {data.series.length > 0 ? (65 <LineChart66// … truncated
What it pulls in
npm packages
Other registry items
Files it writes
More from ncdai
All 17 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Blog 01blog-01 | ncdai | Blocks | Unverified | 1 dep · 2 files | |
| Blog 02blog-02 | ncdai | Blocks | Unverified | 1 dep · 2 files | |
| Experience 01experience-01 | ncdai | Blocks | Unverified | no deps | |
| Hero 01hero-01 | ncdai | Blocks | Unverified | no deps · 2 files | |
| Login 01login-01 | ncdai | Blocks | Unverified | no deps · 2 files | |
| Not Found 01not-found-01 | ncdai | Blocks | Free | 3 deps · 11 files | |
| Social Links 01social-links-01 | ncdai | Blocks | Unverified | no deps | |
| Social Proof 01social-proof-01 | ncdai | Blocks | Unverified | no deps |
