
3D Extruded Buildings & Urban Footprints
Real-world 3D building extrusions with dynamic sunlight shadows, terrain DEM elevations, and pitch/bearing camera controls.
Site footer collection: multi-column newsletter, oversized brand statement, dense developer grid, mega newsletter, single-row minimal, and dense sitemap variants — each spelled out inline so copy lives in one place.
Also available for Vue ->$pnpm dlx shadcn@latest add https://uipkge.dev/r/react/footer.json$npx shadcn@latest add https://uipkge.dev/r/react/footer.json$yarn dlx shadcn@latest add https://uipkge.dev/r/react/footer.json$bunx shadcn@latest add https://uipkge.dev/r/react/footer.jsonnpx shadcn@latest add @uipkge-react/footerInstalls to:components/blocks/footer/Type aliases exported from this item's source. Use these to shape the data you pass in.
FooterColumninterface FooterColumn {
title: string
links: { label: string; href: string; badge?: string }[]
}'use client'
import * as React from 'react'
import { Boxes } from 'lucide-react'
const Github = ({ className }: { className?: string }) => (
<svg className={className} viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path d="M12 .5C5.7.5.5 5.7.5 12c0 5.1 3.3 9.4 7.9 10.9.6.1.8-.3.8-.6v-2c-3.2.7-3.9-1.5-3.9-1.5-.5-1.4-1.3-1.7-1.3-1.7-1.1-.7.1-.7.1-.7 1.2.1 1.8 1.2 1.8 1.2 1 1.8 2.7 1.3 3.4 1 .1-.8.4-1.3.7-1.6-2.6-.3-5.3-1.3-5.3-5.8 0-1.3.5-2.3 1.2-3.1-.1-.3-.5-1.5.1-3.1 0 0 1-.3 3.3 1.2a11.4 11.4 0 016 0C17 4.7 18 5 18 5c.6 1.6.2 2.8.1 3.1.8.8 1.2 1.8 1.2 3.1 0 4.5-2.7 5.5-5.3 5.8.4.4.8 1.1.8 2.2v3.3c0 .3.2.7.8.6 4.6-1.5 7.9-5.8 7.9-10.9C23.5 5.7 18.3.5 12 .5z" />
</svg>
)
const Twitter = ({ className }: { className?: string }) => (
<svg className={className} viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path d="M18.24 2.25h3.31l-7.23 8.26 8.5 11.24h-6.66l-5.21-6.82-5.97 6.82H1.68l7.73-8.84L1.25 2.25h6.83l4.71 6.23zm-1.16 17.52h1.83L7.08 4.13H5.12z" />
</svg>
)
const Linkedin = ({ className }: { className?: string }) => (
<svg className={className} viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path d="M20.45 20.45h-3.56v-5.57c0-1.33-.02-3.04-1.85-3.04-1.85 0-2.14 1.45-2.14 2.94v5.67H9.35V9h3.41v1.56h.05c.48-.9 1.64-1.85 3.37-1.85 3.6 0 4.27 2.37 4.27 5.46v6.28zM5.34 7.43a2.06 2.06 0 110-4.13 2.06 2.06 0 010 4.13zm1.78 13.02H3.56V9h3.56v11.45zM22.22 0H1.77C.79 0 0 .77 0 1.73v20.54C0 23.23.79 24 1.77 24h20.45c.98 0 1.78-.77 1.78-1.73V1.73C24 .77 23.2 0 22.22 0z" />
</svg>
)
import { Button } from '@/components/ui/button'
import { Input } from '@/components/ui/input'
import { Separator } from '@/components/ui/separator'
export function Footer01() {
const [newsletter, setNewsletter] = React.useState('')
const [subscribed, setSubscribed] = React.useState(false)
function subscribe(e: React.FormEvent) {
e.preventDefault()
if (!newsletter) return
setSubscribed(true)
setNewsletter('')
}
return (
<footer data-slot="footer-01" className="bg-background border-t">
<div className="mx-auto max-w-6xl px-6 py-16">
<div className="grid gap-10 lg:grid-cols-12">
<div className="space-y-4 lg:col-span-4">
<div className="flex items-center gap-2">
<div className="bg-primary text-primary-foreground flex size-8 items-center justify-center rounded-md">
<Boxes className="size-4" />
</div>
<span className="text-base font-semibold">Acme</span>
</div>
<p className="text-muted-foreground max-w-sm text-sm">Built on shadcn-vue. Get product updates monthly.</p>
<form className="flex max-w-sm gap-2" onSubmit={subscribe}>
<Input
value={newsletter}
onChange={(e) => setNewsletter(e.target.value)}
type="email"
placeholder="[email protected]"
required
className="flex-1"
/>
<Button type="submit">Subscribe</Button>
</form>
{subscribed && <p className="text-success text-xs">Thanks — check your inbox to confirm.</p>}
</div>
<div className="grid grid-cols-2 gap-6 sm:grid-cols-4 lg:col-span-8">
<div className="space-y-3">
<h3 className="text-sm font-semibold">Product</h3>
<ul className="space-y-2">
<li>
<a href="#" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
Features
</a>
</li>
<li>
<a href="#" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
Pricing
</a>
</li>
<li>
<a href="#" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
Changelog
</a>
</li>
<li>
<a href="#" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
Roadmap
</a>
</li>
</ul>
</div>
<div className="space-y-3">
<h3 className="text-sm font-semibold">Company</h3>
<ul className="space-y-2">
<li>
<a href="#" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
About
</a>
</li>
<li>
<a href="#" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
Blog
</a>
</li>
<li>
<a href="#" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
Careers
</a>
</li>
<li>
<a href="#" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
Contact
</a>
</li>
</ul>
</div>
<div className="space-y-3">
<h3 className="text-sm font-semibold">Resources</h3>
<ul className="space-y-2">
<li>
<a href="#" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
Documentation
</a>
</li>
<li>
<a href="#" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
API
</a>
</li>
<li>
<a href="#" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
Help center
</a>
</li>
<li>
<a href="#" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
Status
</a>
</li>
</ul>
</div>
<div className="space-y-3">
<h3 className="text-sm font-semibold">Legal</h3>
<ul className="space-y-2">
<li>
<a href="#" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
Terms
</a>
</li>
<li>
<a href="#" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
Privacy
</a>
</li>
<li>
<a href="#" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
Security
</a>
</li>
<li>
<a href="#" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
DPA
</a>
</li>
</ul>
</div>
</div>
</div>
<Separator className="my-10" />
<div className="flex flex-wrap items-center justify-between gap-4">
<p className="text-muted-foreground text-xs">© 2026 Acme. All rights reserved.</p>
<div className="flex items-center gap-3">
<a href="#" aria-label="GitHub" className="text-muted-foreground hover:text-foreground transition-colors">
<Github className="size-4" />
</a>
<a href="#" aria-label="Twitter" className="text-muted-foreground hover:text-foreground transition-colors">
<Twitter className="size-4" />
</a>
<a href="#" aria-label="LinkedIn" className="text-muted-foreground hover:text-foreground transition-colors">
<Linkedin className="size-4" />
</a>
</div>
</div>
</div>
</footer>
)
}
'use client'
import { Layers } from 'lucide-react'
// lucide-react no longer ships brand glyphs, so they are inlined here the
// same way footer-01 and the other shipped React blocks do it.
const Github = ({ className }: { className?: string }) => (
<svg className={className} viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path d="M12 .5C5.7.5.5 5.7.5 12c0 5.1 3.3 9.4 7.9 10.9.6.1.8-.3.8-.6v-2c-3.2.7-3.9-1.5-3.9-1.5-.5-1.4-1.3-1.7-1.3-1.7-1.1-.7.1-.7.1-.7 1.2.1 1.8 1.2 1.8 1.2 1 1.8 2.7 1.3 3.4 1 .1-.8.4-1.3.7-1.6-2.6-.3-5.3-1.3-5.3-5.8 0-1.3.5-2.3 1.2-3.1-.1-.3-.5-1.5.1-3.1 0 0 1-.3 3.3 1.2a11.4 11.4 0 016 0C17 4.7 18 5 18 5c.6 1.6.2 2.8.1 3.1.8.8 1.2 1.8 1.2 3.1 0 4.5-2.7 5.5-5.3 5.8.4.4.8 1.1.8 2.2v3.3c0 .3.2.7.8.6 4.6-1.5 7.9-5.8 7.9-10.9C23.5 5.7 18.3.5 12 .5z" />
</svg>
)
const Linkedin = ({ className }: { className?: string }) => (
<svg className={className} viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path d="M20.45 20.45h-3.56v-5.57c0-1.33-.02-3.04-1.85-3.04-1.85 0-2.14 1.45-2.14 2.94v5.67H9.35V9h3.41v1.56h.05c.48-.9 1.64-1.85 3.37-1.85 3.6 0 4.27 2.37 4.27 5.46v6.28zM5.34 7.43a2.06 2.06 0 110-4.13 2.06 2.06 0 010 4.13zm1.78 13.02H3.56V9h3.56v11.45zM22.22 0H1.77C.79 0 0 .77 0 1.73v20.54C0 23.23.79 24 1.77 24h20.45c.98 0 1.78-.77 1.78-1.73V1.73C24 .77 23.2 0 22.22 0z" />
</svg>
)
import { Badge } from '@/components/ui/badge'
import { Button } from '@/components/ui/button'
import { Separator } from '@/components/ui/separator'
const sections = [
{ heading: 'Platform', links: ['Metric layer', 'Governance', 'Alerting', 'Embedding'] },
{ heading: 'Company', links: ['About', 'Careers', 'Customers', 'Press kit'] },
{ heading: 'Resources', links: ['Documentation', 'Guides', 'Benchmarks', 'Status'] },
]
export function FooterBrandStatement() {
return (
<footer data-slot="footer-brand-statement" className="border-border bg-background border-t">
<div className="mx-auto max-w-6xl px-6 py-16">
<a href="#top" className="flex w-fit items-center gap-2 font-semibold tracking-tight">
<Layers className="text-primary size-5" aria-hidden="true" />
Northwind
</a>
{/* The statement is the only oversized type on the page. Keep it to one
sentence; at this size a second one stops being read. */}
<p className="mt-8 max-w-3xl text-2xl leading-tight font-medium tracking-tight text-balance sm:text-3xl">
Every number your company acts on should have one definition, one owner, and a history you can read.
</p>
<p className="text-muted-foreground mt-4 max-w-xl text-sm leading-relaxed">
That is the whole product. Everything else here is detail.
</p>
<Separator className="my-12" />
<div className="grid grid-cols-2 gap-8 sm:grid-cols-3">
{sections.map((section) => (
<div key={section.heading}>
<p className="text-muted-foreground/70 text-xs font-medium tracking-wide uppercase">{section.heading}</p>
<ul className="mt-3 space-y-2">
{section.links.map((link) => (
<li key={link}>
<a href="#" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
{link}
</a>
</li>
))}
</ul>
</div>
))}
</div>
<Separator className="my-10" />
<div className="flex flex-col gap-4 sm:flex-row sm:items-center">
<div className="text-muted-foreground flex flex-wrap items-center gap-x-4 gap-y-2 text-xs">
<span>© 2026 Northwind Data, Inc.</span>
<a href="#privacy" className="hover:text-foreground transition-colors">
Privacy
</a>
<a href="#terms" className="hover:text-foreground transition-colors">
Terms
</a>
<a href="mailto:[email protected]" className="hover:text-foreground transition-colors">
[email protected]
</a>
</div>
<div className="flex items-center gap-2 sm:ml-auto">
<Badge variant="outline">SOC 2 Type II</Badge>
<Badge variant="outline">GDPR</Badge>
<Button variant="ghost" size="icon" className="size-8" aria-label="GitHub">
<Github className="size-4" aria-hidden="true" />
</Button>
<Button variant="ghost" size="icon" className="size-8" aria-label="LinkedIn">
<Linkedin className="size-4" aria-hidden="true" />
</Button>
</div>
</div>
</div>
</footer>
)
}
'use client'
import * as React from 'react'
import { Globe } from 'lucide-react'
import { Button } from '@/components/ui/button'
import { cn } from '@/lib/utils'
const Github = ({ className }: { className?: string }) => (
<svg className={className} viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path d="M12 .5C5.7.5.5 5.7.5 12c0 5.1 3.3 9.4 7.9 10.9.6.1.8-.3.8-.6v-2c-3.2.7-3.9-1.5-3.9-1.5-.5-1.4-1.3-1.7-1.3-1.7-1.1-.7.1-.7.1-.7 1.2.1 1.8 1.2 1.8 1.2 1 1.8 2.7 1.3 3.4 1 .1-.8.4-1.3.7-1.6-2.6-.3-5.3-1.3-5.3-5.8 0-1.3.5-2.3 1.2-3.1-.1-.3-.5-1.5.1-3.1 0 0 1-.3 3.3 1.2a11.4 11.4 0 016 0C17 4.7 18 5 18 5c.6 1.6.2 2.8.1 3.1.8.8 1.2 1.8 1.2 3.1 0 4.5-2.7 5.5-5.3 5.8.4.4.8 1.1.8 2.2v3.3c0 .3.2.7.8.6 4.6-1.5 7.9-5.8 7.9-10.9C23.5 5.7 18.3.5 12 .5z" />
</svg>
)
const Twitter = ({ className }: { className?: string }) => (
<svg className={className} viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path d="M18.24 2.25h3.31l-7.23 8.26 8.5 11.24h-6.66l-5.21-6.82-5.97 6.82H1.68l7.73-8.84L1.25 2.25h6.83l4.71 6.23zm-1.16 17.52h1.83L7.08 4.13H5.12z" />
</svg>
)
interface FooterColumn {
title: string
links: { label: string; href: string; badge?: string }[]
}
const columns: FooterColumn[] = [
{
title: 'UI Primitives',
links: [
{ label: 'Button & Controls', href: '#' },
{ label: 'Dialog & Overlays', href: '#' },
{ label: 'Data Table & Virtual', href: '#' },
{ label: 'Charts & Sparklines', href: '#' },
{ label: 'Form Controls & Inputs', href: '#' },
{ label: 'KpiGrid & Metric Tiles', href: '#' },
],
},
{
title: 'Marketing Blocks',
links: [
{ label: 'Hero Sandboxes', href: '#' },
{ label: 'Feature Workbenches', href: '#' },
{ label: 'Pricing Matrix & ROI', href: '#' },
{ label: 'Social Proof Tickers', href: '#' },
{ label: 'Testimonial Masonry', href: '#' },
{ label: 'Interactive Demos', href: '#', badge: 'New' },
],
},
{
title: 'Ecosystem Templates',
links: [
{ label: 'HRMS Nuxt Template', href: '#' },
{ label: 'HMS Clinical Dashboard', href: '#' },
{ label: 'Shipment Tracking Live', href: '#' },
{ label: 'Fintech Banking Portal', href: '#' },
{ label: 'AI LLM Workspace', href: '#' },
],
},
{
title: 'Developer DX',
links: [
{ label: 'CLI Installation Guide', href: '#' },
{ label: 'Tailwind CSS v4 Tokens', href: '#' },
{ label: 'Dual-Framework Parity', href: '#' },
{ label: 'Reka UI Primitives', href: '#' },
{ label: 'Radix UI Primitives', href: '#' },
{ label: 'Changelog Timeline', href: '#' },
],
},
]
export interface FooterDeveloperDenseGridProps {
className?: string
}
export function FooterDeveloperDenseGrid({ className }: FooterDeveloperDenseGridProps) {
return (
<footer
data-slot="footer-developer-dense-grid"
className={cn('border-border bg-card text-foreground border-t', className)}
>
<div className="mx-auto max-w-7xl space-y-12 px-4 py-12 sm:px-6 sm:py-16 lg:px-8">
{/* Top Grid: Brand & Categorized Columns */}
<div className="grid grid-cols-2 gap-8 text-left md:grid-cols-6 lg:grid-cols-12">
{/* Brand Info (4 Cols) */}
<div className="col-span-2 space-y-4 md:col-span-6 lg:col-span-4">
<div className="flex items-center gap-2 font-mono text-base font-bold tracking-tight">
<span className="bg-primary text-primary-foreground flex size-6 items-center justify-center rounded-lg text-xs font-bold shadow-xs">
U
</span>
<span>UIPKGE.DEV</span>
</div>
<p className="text-muted-foreground max-w-sm text-xs leading-relaxed">
The open-source unbundled component registry where you own 100% of the source code. Calibrated tokens,
pure AST distribution, and mathematical dual-framework parity across Vue 3.5 and React 19.
</p>
{/* Social links */}
<div className="flex items-center gap-2 pt-2">
<Button size="sm" variant="outline" className="size-8 rounded-lg p-0">
<Github className="size-3.5" />
</Button>
<Button size="sm" variant="outline" className="size-8 rounded-lg p-0">
<Twitter className="size-3.5" />
</Button>
<Button size="sm" variant="outline" className="size-8 rounded-lg p-0">
<Globe className="size-3.5" />
</Button>
</div>
</div>
{/* 4 Links Columns (8 Cols total, 2 cols each) */}
{columns.map((col, idx) => (
<div key={idx} className="col-span-1 space-y-3 md:col-span-3 lg:col-span-2">
<h4 className="text-foreground font-mono text-xs font-bold tracking-wider uppercase">{col.title}</h4>
<ul className="text-muted-foreground space-y-2 font-mono text-xs">
{col.links.map((link, lIdx) => (
<li key={lIdx}>
<a
href={link.href}
className="hover:text-foreground inline-flex items-center gap-1.5 transition-colors"
>
<span>{link.label}</span>
{link.badge && (
<span className="py-0.2 bg-primary/20 text-primary rounded px-1.5 text-xs font-bold uppercase">
{link.badge}
</span>
)}
</a>
</li>
))}
</ul>
</div>
))}
</div>
{/* Bottom Operational Status & Copyright Bar */}
<div className="border-border/80 text-muted-foreground flex flex-col items-center justify-between gap-4 border-t pt-8 text-center font-mono text-xs sm:flex-row sm:text-left">
{/* Live System Telemetry Status */}
<div className="flex items-center gap-2.5">
<span className="relative flex size-2">
<span className="bg-success absolute inline-flex h-full w-full rounded-full opacity-75" />
<span className="bg-success relative inline-flex size-2 rounded-full" />
</span>
<span className="text-foreground font-medium">All Global Edge Nodes Operational</span>
<span className="text-muted-foreground/60">• Latency: 14ms (P99)</span>
</div>
{/* Right Copyright & MIT Notice */}
<div className="flex items-center gap-3">
<span>MIT Licensed • Unbundled Code</span>
<span>© {new Date().getFullYear()} UIPKGE</span>
</div>
</div>
</div>
</footer>
)
}
export default FooterDeveloperDenseGrid
'use client'
import { useState, type FormEvent } from 'react'
import { ArrowRight, Check, Layers } from 'lucide-react'
// lucide-react no longer ships brand glyphs, so they are inlined here the
// same way footer-01 and the other shipped React blocks do it.
const Github = ({ className }: { className?: string }) => (
<svg className={className} viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path d="M12 .5C5.7.5.5 5.7.5 12c0 5.1 3.3 9.4 7.9 10.9.6.1.8-.3.8-.6v-2c-3.2.7-3.9-1.5-3.9-1.5-.5-1.4-1.3-1.7-1.3-1.7-1.1-.7.1-.7.1-.7 1.2.1 1.8 1.2 1.8 1.2 1 1.8 2.7 1.3 3.4 1 .1-.8.4-1.3.7-1.6-2.6-.3-5.3-1.3-5.3-5.8 0-1.3.5-2.3 1.2-3.1-.1-.3-.5-1.5.1-3.1 0 0 1-.3 3.3 1.2a11.4 11.4 0 016 0C17 4.7 18 5 18 5c.6 1.6.2 2.8.1 3.1.8.8 1.2 1.8 1.2 3.1 0 4.5-2.7 5.5-5.3 5.8.4.4.8 1.1.8 2.2v3.3c0 .3.2.7.8.6 4.6-1.5 7.9-5.8 7.9-10.9C23.5 5.7 18.3.5 12 .5z" />
</svg>
)
const Linkedin = ({ className }: { className?: string }) => (
<svg className={className} viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path d="M20.45 20.45h-3.56v-5.57c0-1.33-.02-3.04-1.85-3.04-1.85 0-2.14 1.45-2.14 2.94v5.67H9.35V9h3.41v1.56h.05c.48-.9 1.64-1.85 3.37-1.85 3.6 0 4.27 2.37 4.27 5.46v6.28zM5.34 7.43a2.06 2.06 0 110-4.13 2.06 2.06 0 010 4.13zm1.78 13.02H3.56V9h3.56v11.45zM22.22 0H1.77C.79 0 0 .77 0 1.73v20.54C0 23.23.79 24 1.77 24h20.45c.98 0 1.78-.77 1.78-1.73V1.73C24 .77 23.2 0 22.22 0z" />
</svg>
)
const Youtube = ({ className }: { className?: string }) => (
<svg className={className} viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path d="M23.5 6.2a3 3 0 00-2.1-2.1C19.5 3.6 12 3.6 12 3.6s-7.5 0-9.4.5A3 3 0 00.5 6.2C0 8.1 0 12 0 12s0 3.9.5 5.8a3 3 0 002.1 2.1c1.9.5 9.4.5 9.4.5s7.5 0 9.4-.5a3 3 0 002.1-2.1c.5-1.9.5-5.8.5-5.8s0-3.9-.5-5.8zM9.6 15.6V8.4l6.2 3.6-6.2 3.6z" />
</svg>
)
import { Badge } from '@/components/ui/badge'
import { Button } from '@/components/ui/button'
import { Input } from '@/components/ui/input'
import { Separator } from '@/components/ui/separator'
const sections = [
{ heading: 'Product', links: ['Metric layer', 'Dashboards', 'Alerting', 'Embedding', 'Changelog'] },
{ heading: 'Solutions', links: ['Finance', 'RevOps', 'Analytics', 'Engineering'] },
{ heading: 'Developers', links: ['Documentation', 'API reference', 'CLI', 'Status'] },
{ heading: 'Company', links: ['About', 'Careers', 'Customers', 'Press kit'] },
{ heading: 'Legal', links: ['Privacy', 'Terms', 'DPA', 'Subprocessors'] },
]
export function FooterMegaNewsletter() {
const [email, setEmail] = useState('')
const [submitted, setSubmitted] = useState(false)
function subscribe(event: FormEvent) {
event.preventDefault()
if (!email.trim()) return
setSubmitted(true)
}
return (
<footer data-slot="footer-mega-newsletter" className="border-border bg-background border-t">
<div className="mx-auto max-w-6xl px-6 py-14">
<div className="grid gap-12 lg:grid-cols-[22rem_1fr] lg:gap-16">
<div>
<a href="#top" className="flex items-center gap-2 font-semibold tracking-tight">
<Layers className="text-primary size-5" aria-hidden="true" />
Northwind
</a>
<p className="text-muted-foreground mt-3 max-w-sm text-sm leading-relaxed">
One certified metric layer between your warehouse and everything downstream.
</p>
<form className="mt-6" onSubmit={subscribe}>
<label htmlFor="footer-email" className="text-sm font-medium">
Monthly engineering notes
</label>
<div className="mt-2 flex gap-2">
<Input
id="footer-email"
value={email}
onChange={(event) => setEmail(event.target.value)}
type="email"
placeholder="[email protected]"
autoComplete="email"
className="max-w-64"
/>
<Button type="submit">
Subscribe
<ArrowRight className="ml-1.5 size-3.5" aria-hidden="true" />
</Button>
</div>
{/* Status line reserves its own row, so confirming does not shift the columns. */}
<p className="text-muted-foreground mt-2 min-h-5 text-xs">
{submitted ? (
<span className="text-success inline-flex items-center gap-1.5">
<Check className="size-3" aria-hidden="true" />
Check your inbox to confirm.
</span>
) : (
<span>One email a month. Unsubscribe in one click.</span>
)}
</p>
</form>
</div>
<div className="grid grid-cols-2 gap-8 sm:grid-cols-3 lg:grid-cols-5">
{sections.map((section) => (
<div key={section.heading}>
<p className="text-muted-foreground/70 text-xs font-medium tracking-wide uppercase">
{section.heading}
</p>
<ul className="mt-3 space-y-2">
{section.links.map((link) => (
<li key={link}>
<a href="#" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
{link}
</a>
</li>
))}
</ul>
</div>
))}
</div>
</div>
<Separator className="my-10" />
<div className="flex flex-col gap-4 sm:flex-row sm:items-center">
<p className="text-muted-foreground text-xs">© 2026 Northwind Data, Inc. All rights reserved.</p>
<Badge variant="outline" className="w-fit">
SOC 2 Type II
</Badge>
<div className="flex items-center gap-1 sm:ml-auto">
<Button variant="ghost" size="icon" className="size-8" aria-label="GitHub">
<Github className="size-4" aria-hidden="true" />
</Button>
<Button variant="ghost" size="icon" className="size-8" aria-label="LinkedIn">
<Linkedin className="size-4" aria-hidden="true" />
</Button>
<Button variant="ghost" size="icon" className="size-8" aria-label="YouTube">
<Youtube className="size-4" aria-hidden="true" />
</Button>
</div>
</div>
</div>
</footer>
)
}
'use client'
import { Layers } from 'lucide-react'
// lucide-react no longer ships brand glyphs, so they are inlined here the
// same way footer-01 and the other shipped React blocks do it.
const Github = ({ className }: { className?: string }) => (
<svg className={className} viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path d="M12 .5C5.7.5.5 5.7.5 12c0 5.1 3.3 9.4 7.9 10.9.6.1.8-.3.8-.6v-2c-3.2.7-3.9-1.5-3.9-1.5-.5-1.4-1.3-1.7-1.3-1.7-1.1-.7.1-.7.1-.7 1.2.1 1.8 1.2 1.8 1.2 1 1.8 2.7 1.3 3.4 1 .1-.8.4-1.3.7-1.6-2.6-.3-5.3-1.3-5.3-5.8 0-1.3.5-2.3 1.2-3.1-.1-.3-.5-1.5.1-3.1 0 0 1-.3 3.3 1.2a11.4 11.4 0 016 0C17 4.7 18 5 18 5c.6 1.6.2 2.8.1 3.1.8.8 1.2 1.8 1.2 3.1 0 4.5-2.7 5.5-5.3 5.8.4.4.8 1.1.8 2.2v3.3c0 .3.2.7.8.6 4.6-1.5 7.9-5.8 7.9-10.9C23.5 5.7 18.3.5 12 .5z" />
</svg>
)
const Linkedin = ({ className }: { className?: string }) => (
<svg className={className} viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path d="M20.45 20.45h-3.56v-5.57c0-1.33-.02-3.04-1.85-3.04-1.85 0-2.14 1.45-2.14 2.94v5.67H9.35V9h3.41v1.56h.05c.48-.9 1.64-1.85 3.37-1.85 3.6 0 4.27 2.37 4.27 5.46v6.28zM5.34 7.43a2.06 2.06 0 110-4.13 2.06 2.06 0 010 4.13zm1.78 13.02H3.56V9h3.56v11.45zM22.22 0H1.77C.79 0 0 .77 0 1.73v20.54C0 23.23.79 24 1.77 24h20.45c.98 0 1.78-.77 1.78-1.73V1.73C24 .77 23.2 0 22.22 0z" />
</svg>
)
import { Button } from '@/components/ui/button'
import { Separator } from '@/components/ui/separator'
const links = [
{ label: 'Product', href: '#product' },
{ label: 'Pricing', href: '#pricing' },
{ label: 'Docs', href: '#docs' },
{ label: 'Privacy', href: '#privacy' },
{ label: 'Terms', href: '#terms' },
]
export function FooterMinimalRow() {
return (
<footer data-slot="footer-minimal-row" className="border-border bg-background border-t">
<div className="mx-auto flex max-w-6xl flex-col gap-4 px-6 py-6 sm:flex-row sm:items-center">
<a href="#top" className="flex shrink-0 items-center gap-2 text-sm font-semibold tracking-tight">
<Layers className="text-primary size-4" aria-hidden="true" />
Northwind
</a>
<Separator orientation="vertical" className="hidden h-4 sm:block" />
<nav className="flex flex-wrap items-center gap-x-5 gap-y-2" aria-label="Footer">
{links.map((link) => (
<a
key={link.href}
href={link.href}
className="text-muted-foreground hover:text-foreground text-sm transition-colors"
>
{link.label}
</a>
))}
</nav>
<div className="flex items-center gap-1 sm:ml-auto">
<Button variant="ghost" size="icon" className="size-8" aria-label="GitHub">
<Github className="size-4" aria-hidden="true" />
</Button>
<Button variant="ghost" size="icon" className="size-8" aria-label="LinkedIn">
<Linkedin className="size-4" aria-hidden="true" />
</Button>
<span className="text-muted-foreground ml-2 text-xs">© 2026 Northwind</span>
</div>
</div>
</footer>
)
}
'use client'
import { useState } from 'react'
import { Layers } from 'lucide-react'
// lucide-react no longer ships brand glyphs, so they are inlined here the
// same way footer-01 and the other shipped React blocks do it.
const Github = ({ className }: { className?: string }) => (
<svg className={className} viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path d="M12 .5C5.7.5.5 5.7.5 12c0 5.1 3.3 9.4 7.9 10.9.6.1.8-.3.8-.6v-2c-3.2.7-3.9-1.5-3.9-1.5-.5-1.4-1.3-1.7-1.3-1.7-1.1-.7.1-.7.1-.7 1.2.1 1.8 1.2 1.8 1.2 1 1.8 2.7 1.3 3.4 1 .1-.8.4-1.3.7-1.6-2.6-.3-5.3-1.3-5.3-5.8 0-1.3.5-2.3 1.2-3.1-.1-.3-.5-1.5.1-3.1 0 0 1-.3 3.3 1.2a11.4 11.4 0 016 0C17 4.7 18 5 18 5c.6 1.6.2 2.8.1 3.1.8.8 1.2 1.8 1.2 3.1 0 4.5-2.7 5.5-5.3 5.8.4.4.8 1.1.8 2.2v3.3c0 .3.2.7.8.6 4.6-1.5 7.9-5.8 7.9-10.9C23.5 5.7 18.3.5 12 .5z" />
</svg>
)
const Linkedin = ({ className }: { className?: string }) => (
<svg className={className} viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path d="M20.45 20.45h-3.56v-5.57c0-1.33-.02-3.04-1.85-3.04-1.85 0-2.14 1.45-2.14 2.94v5.67H9.35V9h3.41v1.56h.05c.48-.9 1.64-1.85 3.37-1.85 3.6 0 4.27 2.37 4.27 5.46v6.28zM5.34 7.43a2.06 2.06 0 110-4.13 2.06 2.06 0 010 4.13zm1.78 13.02H3.56V9h3.56v11.45zM22.22 0H1.77C.79 0 0 .77 0 1.73v20.54C0 23.23.79 24 1.77 24h20.45c.98 0 1.78-.77 1.78-1.73V1.73C24 .77 23.2 0 22.22 0z" />
</svg>
)
import { Badge } from '@/components/ui/badge'
import { Button } from '@/components/ui/button'
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'
import { Separator } from '@/components/ui/separator'
const sections = [
{ heading: 'Platform', links: ['Metric layer', 'Dashboards', 'Alerting', 'Embedding', 'API', 'CLI'] },
{ heading: 'Solutions', links: ['Finance', 'RevOps', 'Analytics', 'Engineering', 'Healthcare', 'Retail'] },
{ heading: 'Developers', links: ['Documentation', 'API reference', 'SDKs', 'Webhooks', 'Status', 'Changelog'] },
{ heading: 'Resources', links: ['Guides', 'Benchmarks', 'Customers', 'Blog', 'Webinars', 'Glossary'] },
{ heading: 'Company', links: ['About', 'Careers', 'Press kit', 'Partners', 'Contact', 'Security'] },
{ heading: 'Legal', links: ['Privacy', 'Terms', 'DPA', 'Subprocessors', 'SLA', 'Accessibility'] },
]
export function FooterSitemapDense() {
const [region, setRegion] = useState('eu')
const [currency, setCurrency] = useState('eur')
return (
<footer data-slot="footer-sitemap-dense" className="border-border bg-background border-t">
<div className="mx-auto max-w-6xl px-6 py-12">
<div className="grid grid-cols-2 gap-x-6 gap-y-8 sm:grid-cols-3 lg:grid-cols-6">
{sections.map((section) => (
<div key={section.heading}>
<p className="text-muted-foreground/70 text-xs font-medium tracking-wide uppercase">{section.heading}</p>
<ul className="mt-3 space-y-1.5">
{section.links.map((link) => (
<li key={link}>
<a href="#" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
{link}
</a>
</li>
))}
</ul>
</div>
))}
</div>
<Separator className="my-10" />
<div className="flex flex-col gap-6 lg:flex-row lg:items-center">
<a href="#top" className="flex shrink-0 items-center gap-2 text-sm font-semibold tracking-tight">
<Layers className="text-primary size-4" aria-hidden="true" />
Northwind
</a>
<div className="flex flex-wrap items-center gap-2">
<Select value={region} onValueChange={setRegion}>
<SelectTrigger className="h-8 w-40 text-xs" aria-label="Data region">
<SelectValue />
</SelectTrigger>
<SelectContent>
<SelectItem value="eu">EU (Frankfurt)</SelectItem>
<SelectItem value="us">US (Virginia)</SelectItem>
<SelectItem value="au">AU (Sydney)</SelectItem>
</SelectContent>
</Select>
<Select value={currency} onValueChange={setCurrency}>
<SelectTrigger className="h-8 w-28 text-xs" aria-label="Currency">
<SelectValue />
</SelectTrigger>
<SelectContent>
<SelectItem value="eur">EUR €</SelectItem>
<SelectItem value="usd">USD $</SelectItem>
<SelectItem value="gbp">GBP £</SelectItem>
</SelectContent>
</Select>
</div>
<div className="flex flex-wrap items-center gap-3 lg:ml-auto">
{/* Status dot is a live indicator, so it carries its own text for
screen readers rather than relying on colour alone. */}
<a href="#status" className="hover:bg-muted flex items-center gap-2 rounded-md px-2 py-1 transition-colors">
<span className="bg-success size-2 rounded-full" aria-hidden="true" />
<span className="text-muted-foreground text-xs">All systems operational</span>
</a>
<Badge variant="outline">SOC 2</Badge>
<Badge variant="outline">GDPR</Badge>
<Button variant="ghost" size="icon" className="size-8" aria-label="GitHub">
<Github className="size-4" aria-hidden="true" />
</Button>
<Button variant="ghost" size="icon" className="size-8" aria-label="LinkedIn">
<Linkedin className="size-4" aria-hidden="true" />
</Button>
</div>
</div>
<p className="text-muted-foreground mt-6 text-xs">© 2026 Northwind Data, Inc. All rights reserved.</p>
</div>
</footer>
)
}
Raw manifest:https://uipkge.dev/r/react/footer.json