Testimonials Simple
A simple testimonial carousel with auto-rotation and progress indicators.
Configuring your account...
Please wait while we prepare everything for you
Usage
import TestimonialsSimple from '@/components/bynanaui/testimonials-simple'
<TestimonialsSimple />Props
| Prop | Type | Default | Description |
|---|---|---|---|
className | string | '' | Additional CSS classes |
Features
- Auto-rotating testimonials (5-second intervals)
- Smooth transitions between testimonials
- Progress bar indicators
- Avatar images with author information
- Responsive design
- Dark theme optimized
Customization
The component includes pre-configured testimonials. You can modify the testimonials array to include your own:
const testimonials = [
{
quote: "Your testimonial text here...",
avatar: "https://example.com/avatar.jpg",
name: "Author Name",
role: "Author Role"
},
// Add more testimonials...
];