BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/terrae/watermark

Map Watermark

terrae/watermark
FreeComponent

Text watermark overlay for maps with configurable position and styling.

Install it

npx shadcn@latest add https://www.terrae.dev/watermark.json

Source

src/registry/map/watermark.tsxwww.terrae.dev/watermark.json
1"use client"
2
3import type { ReactNode } from "react"
4import { cn } from "@/lib/utils"
5
6type MapWatermarkPosition =
7 | "center"
8 | "top-left"
9 | "top-right"
10 | "bottom-left"
11 | "bottom-right"
12 | "top"
13 | "bottom"
14 | "left"
15 | "right"
16
17type MapWatermarkProps = {
18 children: ReactNode
19 position?: MapWatermarkPosition
20 className?: string
21}
22
23const DEFAULT_POSITION: MapWatermarkPosition = "center"
24
25const POSITION_CLASSES: Record<MapWatermarkPosition, string> = {
26 center: "inset-0 items-center justify-center",
27 top: "inset-x-0 top-0 items-start justify-center pt-4",
28 bottom: "inset-x-0 bottom-0 items-end justify-center pb-4",
29 left: "inset-y-0 left-0 items-center justify-start pl-4",
30 right: "inset-y-0 right-0 items-center justify-end pr-4",
31 "top-left": "top-0 left-0 items-start justify-start p-4",
32 "top-right": "top-0 right-0 items-start justify-end p-4",
33 "bottom-left": "bottom-0 left-0 items-end justify-start p-4",
34 "bottom-right": "bottom-0 right-0 items-end justify-end p-4",
35}
36
37export const MapWatermark = ({
38 children,
39 position = DEFAULT_POSITION,
40 className = "text-[8rem] font-extrabold leading-none tracking-tighter text-black/10 dark:text-white/10",
41}: MapWatermarkProps) => {
42 const positionClass = POSITION_CLASSES[position]
43
44 return (
45 <div
46 className={cn("absolute z-20 flex select-none pointer-events-none", positionClass, className)}
47 aria-hidden="true"
48 >
49 {children}
50 </div>
51 )
52}

What it pulls in

Other registry items

  • https://www.terrae.dev/map.json

Files it writes

  • src/registry/map/watermark.tsx

Facts

Registry
terrae
Type
registry:ui
Access
Free
Files written
1
Licence
MIT
In the index
at or before 2026-08-10
Last confirmed
yesterday

Go to the source

www.terrae.dev alamenai/terrae on GitHub Raw registry item This item as JSON

More from terrae

All 40 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Map Animated Circleanimated-circleterraeComponentsFree1 dep
Map Animated Footprintanimated-footprintterraeComponentsFree2 deps
Map Animated Polygonanimated-polygonterraeComponentsFree1 dep
Map Animated Pulseanimated-pulseterraeComponentsFree1 dep
Map Arc Animatedarc-animatedterraeComponentsFree1 dep
Map Blur Areablur-areaterraeComponentsFree1 dep
Map Camera Followcamera-followterraeComponentsFree1 dep
Map ChoroplethchoroplethterraeComponentsFree1 dep

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

KitGrade

SaaS starter kits, scored from measured facts

kitgrade.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and KitGrade

part of Toolproof, the measurement layer for AI agent tooling

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

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and KitGrade

part of Toolproof, the measurement layer for AI agent tooling

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

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and KitGrade

part of Toolproof, the measurement layer for AI agent tooling

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

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex