import { Card, CardContent } from "@/components/ui/card"; import { Star } from "lucide-react"; const reviews = [ { name: "Kai L.", title: "Parent, Tinkerer", comment: "I wished to have a toy for my friends kids, chatting just for fun ... and hearing all is 'out-of-the-box' is unbelievable, awesome!", rating: 5, avatar: "KL", }, { name: "Lauren A. W.", title: "Tech Enthusiast", comment: "I want to make a mini me. I think this box will really help!", rating: 5, avatar: "LA", }, { name: "Steven Z.", title: "Tech Enthusiast", comment: "This is fantastic, extremely useful. Thanks so much.", rating: 4.5, avatar: "SZ", }, { name: "Z Xavi", title: "Tech Enthusiast", comment: "I really see the value in what you're doing, ... it's an open source thing ... that is a truly commendable aim", rating: 5, avatar: "ZX", }, ]; const Reviews = () => { return (

From our early users

{reviews.map((testimonial, index) => (
{testimonial.avatar}

{testimonial.name}

{testimonial.title}

{testimonial.comment}

{/* {testimonial.rating} */} {/* */} {/* {[...Array(5)].map((_, i) => ( ))} */}
))}
); }; export default Reviews;