Spaces:
Build error
Build error
File size: 2,202 Bytes
82884e2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | import { Star } from 'lucide-react';
const testimonials = [
{
name: 'Sarah Chen',
role: 'Founder, Pixelwave',
avatar: 'π©βπ»',
content: 'Lovable turned my weekend side project into a funded startup. I built the entire MVP in one afternoon β something that would have taken months with traditional development.',
stars: 5,
},
{
name: 'Marcus Rodriguez',
role: 'CTO, DataFlow',
avatar: 'π¨βπΌ',
content: 'We replaced our prototyping workflow entirely. What used to take our team 2 weeks now takes 2 hours. The code quality is genuinely production-ready.',
stars: 5,
},
{
name: 'Emily Watson',
role: 'Indie Maker',
avatar: 'π©βπ¨',
content: 'As a designer who codes, Lovable is a dream. I describe my vision and it generates exactly what I imagine β pixel perfect, responsive, and accessible.',
stars: 5,
},
{
name: 'Alex Kim',
role: 'Engineering Lead, Stripe',
avatar: 'π¨βπ¬',
content: 'The Supabase integration is seamless. Full-stack apps with auth, database, and storage β all from a single prompt. This is the future of development.',
stars: 5,
},
{
name: 'Priya Patel',
role: 'Product Manager, Notion',
avatar: 'π©βπ¬',
content: 'I can finally prototype without waiting for engineering bandwidth. Lovable lets me validate ideas in real-time during user interviews. Game changer.',
stars: 5,
},
{
name: 'James O\'Brien',
role: 'Freelance Developer',
avatar: 'π§βπ»',
content: 'My productivity has 10x\'d. I take on more clients, deliver faster, and the quality of my work has actually improved. Lovable handles the boilerplate so I can focus on the interesting parts.',
stars: 5,
},
];
export default function Testimonials() {
return (
<section className="py-24 px-4 sm:px-6 lg:px-8 relative">
<div className="absolute inset-0 pointer-events-none">
<div className="absolute top-0 left-0 right-0 h-px bg-gradient-to-r from-transparent via-white/5 to-transparent" />
</div>
<div className="max-w-7xl mx-auto">
<div className="text-center mb-16">
<div className=" |