BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/mapcn/uptime-monitor

Uptime Monitor

mapcn/uptime-monitor
FreeBlock

Status-page style map of edge network locations with live health, latency, and uptime.

Install it

npx shadcn@latest add https://mapcn.dev/r/uptime-monitor.json

Source

src/registry/blocks/uptime-monitor/page.tsxmapcn.dev/r/uptime-monitor.json
1"use client";
2
3import { Map, MapControls, MapGeoJSON } from "@/components/ui/map";
4import { EdgeNodeMarker } from "./components/edge-node-marker";
5import { StatusSidebar } from "./components/status-sidebar";
6import { edgeNodes, mapView, WORLD_GEOJSON } from "./data";
7
8export default function Page() {
9 return (
10 <div className="flex min-h-screen items-center justify-center p-4">
11 <div className="bg-card flex h-[500px] w-full max-w-4xl overflow-hidden rounded-xl border shadow-sm">
12 <StatusSidebar nodes={edgeNodes} />
13
14 <div className="relative min-w-0 flex-1">
15 <Map
16 blank
17 center={mapView.center}
18 zoom={mapView.zoom}
19 minZoom={mapView.minZoom}
20 maxZoom={mapView.maxZoom}
21 scrollZoom={false}
22 dragRotate={false}
23 pitchWithRotate={false}
24 >
25 <MapGeoJSON data={WORLD_GEOJSON} linePaint={false} />
26
27 {edgeNodes.map((node) => (
28 <EdgeNodeMarker key={node.id} node={node} />
29 ))}
30
31 <MapControls className="bottom-2" />
32 </Map>
33 </div>
34 </div>
35 </div>
36 );
37}

What it pulls in

npm packages

  • maplibre-gl

Other registry items

  • @mapcn/map

Files it writes

  • src/registry/blocks/uptime-monitor/page.tsx
  • src/registry/blocks/uptime-monitor/data.ts
  • src/registry/blocks/uptime-monitor/components/edge-node-marker.tsx
  • src/registry/blocks/uptime-monitor/components/status-sidebar.tsx

Facts

Registry
mapcn
Type
registry:block
Access
Free
Files written
4
Licence
MIT
First indexed
2026-08-01
Last confirmed
today

Go to the source

mapcn.dev AnmolSaini16/mapcn on GitHub Raw registry item This item as JSON

More from mapcn

All 9 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Analytics Cardanalytics-cardmapcnBlocksFree1 dep · 2 files
Analytics Mapanalytics-mapmapcnBlocksFree2 deps · 4 files
ChoroplethchoroplethmapcnBlocksFree2 deps · 3 files
Delivery Trackerdelivery-trackermapcnBlocksFree1 dep · 2 files
HeatmapheatmapmapcnBlocksFreeno deps
Logistics Networklogistics-networkmapcnBlocksFree1 dep · 4 files
Store Locatorstore-locatormapcnBlocksFree1 dep · 4 files
BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex