"use client"
const testimonials = [
"Clean, fast, and well documented.",
"Best developer experience I've had in years.",
"Went from zero to production in minutes.",
"The documentation is a joy to read.",
"Scales effortlessly with my needs.",
"Exactly what I needed for my project.",
]
function MarqueeContent() {
return (
<>
{testimonials.map((testimonial, index) => (
{testimonial}
))}
>
)
}
export function HomeMarquee() {
return (
)
}