import { MotionHighlight, MotionHighlightItem, } from '@/registry/effects/motion-highlight'; import { MotionEffect } from '@/registry/effects/motion-effect'; import { Blocks, BringToFront, GitPullRequest } from 'lucide-react'; import ShadcnIcon from '@workspace/ui/components/icons/shadcn-icon'; const CARDS = [ { value: '1', icon: BringToFront, title: 'Animated Components', description: 'Beautiful Motion-animated components for dynamic websites.', }, { value: '2', icon: GitPullRequest, title: 'Open Source', description: 'A project built for the dev community with the dev community.', }, { value: '3', icon: ShadcnIcon, title: 'Complementary to Shadcn UI', description: 'The components are designed to be used with Shadcn UI components.', }, { value: '4', icon: Blocks, title: 'Component Distribution', description: 'Install the components in your project and modify them as you wish.', }, ]; export const Cards = () => { return (
{card.title}
{card.description}