import { Carousel, CarouselContent, CarouselItem } from "@/app/_components/ui/carousal" import { QuoteIcon } from "lucide-react" export const CarousalQuotes = () => { const items = [ { quote: "Tried @supabase for the first time yesterday. Amazing tool! I was able to get my Posgres DB up in no time and their documentation on operating on the DB is super easy! 👏 Can't wait for Cloud functions to arrive! It's gonna be a great Firebase alternative!", author: "@codewithbhargav", image: "https://github.com/shadcn.png", }, { quote: "Check out this amazing product @supabase. A must give try #newidea #opportunity", author: "@techenthusiast", image: "https://github.com/shadcn.png", }, { quote: "Check out this amazing product @supabase. A must give try #newidea #opportunity", author: "@dataguru", image: "https://github.com/shadcn.png", }, ]; return ( <> {items.map((item, index) => (
{/* */}

{item.quote}

Profile

{item.author}

))}
) }