Get Started
Components
- Components
- Accordion
- Alert Dialog
- Alert
- Aspect Ratio
- Avatar
- Backgrounds
- Badge
- Breadcrumb
- Button
- Calendar
- Card
- Carousel
- Checkbox
- Collapsible
- Combobox
- Command
- Context Menu
- Dialog
- Diamond
- Drawer
- Dropdown Menu
- Hero
- Hover Card
- Input OTP
- Input
- Kbd
- Label
- Menubar
- Navigation Menu
- Pagination
- Popover
- Progress
- Radio Group
- Resizable
- Scroll-area
- Select
- Separator
- Sheet
- Sidebar
- Skeleton
- Slider
- Sonner
- Switch
- Table
- Tabs
- Textarea
- Toggle Group
- Toggle
- Tooltip
- Typography
Nathan's Component Library
My own set of components. Built to move fast and stay consistent across all my projects. Fully compatible with shadcn/ui
import Link from "next/link"
import { Button } from "@/components/ui/button"
import {
Hero,
HeroActions,
HeroDescription,
HeroHeading,
} from "@/components/ui/hero"
const title = "Nathan's Component Library"
const description =
"My own set of components. Built to move fast and stay consistent across all my projects. Fully compatible with shadcn/ui"
export function HeroDemo() {
return (
<Hero className="-translate-x-[48px]">
<HeroHeading>{title}</HeroHeading>
<HeroDescription>{description}</HeroDescription>
<HeroActions>
<Button asChild>
<Link href="/docs">Get Started</Link>
</Button>
<Button asChild variant="outline">
<Link href="/blocks">Browse Blocks</Link>
</Button>
</HeroActions>
</Hero>
)
}
Installation
bunx --bun shadcn@latest add https://ui.brodin.dev/r/hero.json
On This Page
Installation