// This is a demo of a preview
'use client'
import { Component } from "@/components/ui/3d-book-testimonial";
const DemoOne = () => {
const testimonials = [
{
image: 'https://cdn.21st.dev/assets/mirror/f0/f0c838a25f6460c39c84cb5835882259b9d99bae288116728edb4d28c9b730a9.jpg',
text: 'This component library is incredibly versatile. It saved me hours of development time.',
name: 'Ethan Smith',
jobtitle: 'Software Engineer',
rating: 5,
},
{
image: 'https://cdn.21st.dev/assets/mirror/9f/9f8b26f06055b0fad168c4ecfa5d66444476b9c4aa37bc71d49208157883406d.jpg',
text: 'The seamless integration and intuitive design of these components are truly impressive.',
name: 'Olivia Chen',
jobtitle: 'Product Manager',
rating: 4,
},
{
image: 'https://cdn.21st.dev/assets/mirror/6b/6ba5674f5c5b523d73342d575c82e6767da8e7b9fc6ffddac67c93dd17d171c7.jpg',
text: 'As a UX designer, I appreciate the attention to detail. The components are well-crafted.',
name: 'Liam Johnson',
jobtitle: 'UX Designer',
rating: 5,
},
{
image: 'https://cdn.21st.dev/assets/mirror/72/72aaaefa57fb63db19fb0ee8be7ab81247f6a1a705af013862591a6a1a9be2ae.jpg',
text: 'This library is a game-changer for our marketing efforts. It has significantly boosted our conversion rates!',
name: 'Ava Martinez',
jobtitle: 'Marketing Specialist',
rating: 5,
},
{
image: 'https://images.unsplash.com/photo-1507003211169-0a6dd7228f2d?q=80&w=1780&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8fHx8fA%3D%3D',
text: 'Developing with these components is a breeze. The documentation is clear and helpful.',
name: 'Noah Williams',
jobtitle: 'Full Stack Developer',
rating: 4,
},
{
image: 'https://cdn.21st.dev/assets/mirror/c5/c5e905b2860ce5a3e29444919c8ea8ae09056efbf0f8c556c7dac89bee1f7c06.jpg',
text: 'The components are fantastic! They make our content more dynamic and engaging. Highly recommend it.',
name: 'Sophia Brown',
jobtitle: 'Content Creator',
rating: 5,
},
{
image: 'https://cdn.21st.dev/assets/mirror/d3/d3df836ddb1cdd5c3f9b67cee0fbc2f703adecc684034c08114bb2f3dfa1f201.jpg',
text: 'As a startup, efficiency is key. This component library provides high-quality, ready-to-use solutions.',
name: 'James Davis',
jobtitle: 'Startup Founder',
rating: 5,
},
{
image: 'https://cdn.21st.dev/assets/mirror/32/32f64aca4c830306f5500a0fac1f016796fe71d74d93047225b725174e4db3ce.jpg',
text: 'Solid components and excellent performance. They integrate smoothly and provide a rich user experience.',
name: 'Benjamin Miller',
jobtitle: 'Backend Engineer',
rating: 4,
},
];
return (
<div className="flex w-full h-screen justify-center items-center">
<Component testimonials={testimonials} />
</div>
);
};
export default DemoOne;1