Footer Simple

Minimal single-row footer with brand name and links.

Preview

Installation

terminal
$
Other package managers
bunx --bun shadcn@latest add https://trents.tech/r/footer-simple.json

Usage

footer-simple-demo.tsx
import FooterSimple from "@/components/blocks/footer-simple"

export default function FooterSimpleDemo() {
  return (
    <FooterSimple
      // Customize brand copy and links.
      brand="@trents/ui"
      description="A brutalist component library for bold interfaces."
      links={[
        { label: "Docs", href: "/docs" },
        { label: "Components", href: "/docs/accordion" },
        { label: "Changelog", href: "/docs/changelog" },
      ]}
    />
  )
}
0