FEAST // NEXTUI

Card

Composable dark card with header, body, and footer sub-components in the FEAST culinary aesthetic.

$npx @voltenworks/shipui add card --theme feast
Or install the base component for free:
Live Preview
Open full demo
voltenworks.com/shipui/feast/demo/components
Usage
TSX
<Card>
  <CardHeader>Seasonal menu</CardHeader>
  <CardBody>Spring tasting flight, five courses.</CardBody>
</Card>
Variants
<Card><CardHeader>Seasonal menu</CardHeader><CardBody>Spring tasting flight, five courses.</CardBody></Card>
<Card><CardHeader>Wine pairing</CardHeader><CardBody>Curated selection from our cellar.</CardBody><CardFooter>Ask your sommelier.</CardFooter></Card>
<Card><CardBody>Body only card.</CardBody></Card>
Source
TSX
import { cn } from '@/lib/utils'

interface CardProps {
  className?: string
  children:   React.ReactNode
}

export function Card({ className, children }: CardProps): React.JSX.Element {
  return (
    <div className={cn('feast-card', className)}>
      {children}
    </div>
  )
}

export function CardHeader({ className, children }: CardProps): React.JSX.Element {
  return (
    <div className={cn('feast-card-header', className)}>
      {children}
    </div>
  )
}

export function CardBody({ className, children }: CardProps): React.JSX.Element {
  return (
    <div className={cn('feast-card-body', className)}>
      {children}
    </div>
  )
}

export function CardFooter({ className, children }: CardProps): React.JSX.Element {
  return (
    <div className={cn('feast-card-footer', className)}>
      {children}
    </div>
  )
}
Preview in theme demoGet full theme, $29
Works withNext.js 15React 19Tailwind v4TypeScript 5
More from FEAST // NEXT
FEAST // NEXTUI

Button

Rich dark-mode button with gold-accented primary, secondary, and ghost variants in three sizes. Renders as a Next.js Link when an href is provided.

FEAST // NEXTUI

Badge

Gold-toned badge for category and status labels in the FEAST dark culinary palette.

FEAST // NEXTUI

Text

Polymorphic text primitive with body, caption, label, and code variants styled for the FEAST dark culinary palette.