import { CardCarouselQuote, Quote } from '../Cards/CardCarouselQuote' import { Heading } from '../Text/Heading' import { quoteHeading, quotesContainer, quotesSection, } from './CarouselQuotes.css' interface CarouselQuotesProps { quotes: Quote[] } /** * TODO: make sure there's a gap on the right * of the carousel when you scroll far */ export const CarouselQuotes = ({ quotes }: CarouselQuotesProps) => { return (
Hear what our fans say
{quotes.map(quote => ( ))}
) }