Implementation

pnpm dlx shadcn@latest add @flx/content-09

Usage

content-09-example.tsx
import { Content09, type Content09Props } from './content-09'

export const values = {
  title: 'What we offer',
  description:
    'Four focused capabilities, each with a clear icon, headline, and short explanation.',
  variant: 'standard',
  animation: 'subtle',
  items: [
    {
      title: 'Modern Design',
      description:
        'Beautiful and contemporary UI components that make your projects stand out.',
      icon: 'Palette',
    },
    {
      title: 'Developer Experience',
      description:
        'Built with developers in mind. Easy to use, well documented, and highly customizable.',
      icon: 'Code',
    },
    {
      title: 'Community Driven',
      description:
        'Join thousands of developers contributing to make UI development better for everyone.',
      icon: 'Users',
    },
    {
      title: 'Fast Performance',
      description: 'Optimized for speed and efficiency right out of the box.',
      icon: 'Zap',
    },
  ],
} satisfies Content09Props

export function Content09Example() {
  return (
    <Content09
      title={values.title}
      description={values.description}
      items={values.items}
      variant={values.variant}
      animation={values.animation}
    />
  )
}

More

Other blocks in Content.