import React from 'react'; import { ArrowTopRightIcon } from './icons'; interface BoldIdeasCarouselProps { ideas: string[]; direction?: 'normal' | 'reverse'; duration?: string; } const BoldIdeasCarousel: React.FC = ({ ideas, direction = 'normal', duration = '72s' }) => { return (
{/* Render the list twice for seamless loop */} {[...ideas, ...ideas].map((idea, index) => (
e.preventDefault()} className="text-sm text-center text-slate-700 font-medium cursor-default"> {idea}
))}
); }; export default BoldIdeasCarousel;