BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/neobrutalui/card

card

neobrutalui/card
FreeComponent

Group and organize related content into a contained unit.

Live preview

live · rendered by the registry
Rendered by neobrutalui on their own page — this is the component running, not a screenshot of it.

Install it

npx shadcn@latest add https://www.neobrutalui.live/r/card.json

Source

components/ui/card.tsxwww.neobrutalui.live/r/card.json
1import * as React from "react"
2import { cva, type VariantProps } from "class-variance-authority"
3import { cn } from "@/lib/utils"
4
5const cardVariants = cva(
6 "rounded-base border-2 border-black bg-white text-black shadow-brutal",
7 {
8 variants: {
9 variant: {
10 default: "",
11 },
12 },
13 defaultVariants: {
14 variant: "default",
15 },
16 }
17)
18
19export type CardProps = React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof cardVariants>
20
21const Card = React.forwardRef<HTMLDivElement, CardProps>(
22 ({ className, variant, ...props }, ref) => (
23 <div
24 ref={ref}
25 className={cn(cardVariants({ variant }), "p-4", className)}
26 {...props}
27 />
28 )
29)
30Card.displayName = "Card"
31
32const CardHeader = React.forwardRef<
33 HTMLDivElement,
34 React.HTMLAttributes<HTMLDivElement>
35>(({ className, ...props }, ref) => (
36 <div
37 ref={ref}
38 className={cn("flex flex-col space-y-1.5 pb-2", className)}
39 {...props}
40 />
41))
42CardHeader.displayName = "CardHeader"
43
44const CardTitle = React.forwardRef<
45 HTMLHeadingElement,
46 React.HTMLAttributes<HTMLHeadingElement>
47>(({ className, ...props }, ref) => (
48 <h3
49 ref={ref}
50 className={cn(
51 "text-2xl font-bold",
52 className
53 )}
54 {...props}
55 />
56))
57CardTitle.displayName = "CardTitle"
58
59const CardContent = React.forwardRef<
60 HTMLDivElement,
61 React.HTMLAttributes<HTMLDivElement>
62>(({ className, ...props }, ref) => (
63 <div ref={ref} className={cn(className)} {...props} />
64))
65CardContent.displayName = "CardContent"
66
67const CardFooter = React.forwardRef<
68 HTMLDivElement,
69 React.HTMLAttributes<HTMLDivElement>
70>(({ className, ...props }, ref) => (
71 <div
72 ref={ref}
73 className={cn("flex items-center pt-6", className)}
74 {...props}
75 />
76))
77CardFooter.displayName = "CardFooter"
78
79export { Card, CardHeader, CardFooter, CardTitle, CardContent, cardVariants }

What it pulls in

Other registry items

  • utils

Facts

Registry
neobrutalui
Type
registry:ui
Access
Free
Files written
0
Licence
MIT
In the index
at or before 2026-08-12
Last confirmed
3 days ago

Go to the source

Docs on neobrutalui www.neobrutalui.live Bridgetamana/neobrutal-ui on GitHub Raw registry item This item as JSON

More from neobrutalui

All 24 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
accordionaccordionneobrutaluiComponentsFree2 deps
alertalertneobrutaluiComponentsFree1 dep
avataravatarneobrutaluiComponentsFreeno deps
badgebadgeneobrutaluiComponentsFree1 dep
buttonbuttonneobrutaluiComponentsFree1 dep
checkboxcheckboxneobrutaluiComponentsFree2 deps
date-pickerdate-pickerneobrutaluiComponentsFree2 deps
dialogdialogneobrutaluiComponentsFree2 deps

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

ToolDrift

What the AI coding tools changed last night

tooldrift.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 ToolDrift

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 ToolDrift

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 ToolDrift

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