BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/openstatus/status-page-footer

Status Page Footer

openstatus/status-page-footer
FreeBlock

Presentation-only footer chrome (powered-by, action cluster). Embed/white-label gating, switchers, and tRPC fetch stay in the wrapping app

Install it

npx shadcn@latest add https://openstatus.dev/r/status-page-footer.json

Source

src/components/blocks/status-page-footer.tsxopenstatus.dev/r/status-page-footer.json
1"use client";
2
3import { useStatusBlocksLabels } from "@/components/blocks/status-i18n";
4import { cn } from "@/lib/utils";
5
6/**
7 * StatusPageFooter — presentation-only footer chrome.
8 *
9 * Compose with `StatusPageFooterContent`, `StatusPagePoweredBy`, and
10 * `StatusPageFooterActions`. Embed / white-label gating, locale + theme
11 * switchers, and the tRPC fetch all stay in the wrapping app.
12 */
13export function StatusPageFooter({
14 className,
15 ...props
16}: React.ComponentProps<"footer">) {
17 return (
18 <footer
19 data-slot="status-page-footer"
20 className={cn(className)}
21 {...props}
22 />
23 );
24}
25
26export function StatusPageFooterContent({
27 className,
28 ...props
29}: React.ComponentProps<"div">) {
30 return (
31 <div
32 data-slot="status-page-footer-content"
33 className={cn(
34 "mx-auto flex max-w-2xl items-center justify-between gap-4 px-3 py-2",
35 className,
36 )}
37 {...props}
38 />
39 );
40}
41
42/**
43 * StatusPagePoweredBy — "powered by …" line. The link element (with href,
44 * target, utm params, app-specific Link wrapper, etc.) is supplied as
45 * children so the block stays routing-agnostic.
46 */
47export function StatusPagePoweredBy({
48 children,
49 className,
50 ...props
51}: React.ComponentProps<"p">) {
52 const labels = useStatusBlocksLabels();
53 return (
54 <p
55 data-slot="status-page-powered-by"
56 className={cn(
57 "text-muted-foreground font-mono text-xs leading-none sm:text-sm",
58 className,
59 )}
60 {...props}
61 >
62 {labels.poweredBy} {children}
63 </p>
64 );
65}
66
67/**
68 * StatusPageFooterActions — right-side cluster (last-updated, locale,
69 * theme). Pass actions as children; the block is layout-only.
70 */
71export function StatusPageFooterActions({
72 className,
73 ...props
74}: React.ComponentProps<"div">) {
75 return (
76 <div
77 data-slot="status-page-footer-actions"
78 className={cn("flex items-center gap-2", className)}
79 {...props}
80 />
81 );
82}

What it pulls in

Other registry items

  • https://openstatus.dev/r/status-i18n.json

Files it writes

  • src/components/blocks/status-page-footer.tsx

Facts

Registry
openstatus
Type
registry:block
Access
Free
Files written
1
Licence
AGPL-3.0
First indexed
2026-08-01
Last confirmed
yesterday

Go to the source

openstatus.dev openstatusHQ/openstatus on GitHub Raw registry item This item as JSON

More from openstatus

All 26 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Status Bannerstatus-banneropenstatusBlocksFreeno deps
Status Barstatus-baropenstatusBlocksFree1 dep
Status Blank Statesstatus-blankopenstatusBlocksFreeno deps
Status Calendarstatus-calendaropenstatusBlocksFree3 deps
Status Page Chromestatus-chromeopenstatusBlocksFreeno deps
Status Page (Complete)status-completeopenstatusBlocksFreeno deps
Status Componentstatus-componentopenstatusBlocksFree2 deps
Status Component Groupstatus-component-groupopenstatusBlocksFreeno deps
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