diff --git a/packages/web/src/components/landing/testimonials-section.tsx b/packages/web/src/components/landing/testimonials-section.tsx
new file mode 100644
index 00000000..b23e6772
--- /dev/null
+++ b/packages/web/src/components/landing/testimonials-section.tsx
@@ -0,0 +1,269 @@
+'use client';
+
+import { useState } from 'react';
+import { Star, Quote, ChevronLeft, ChevronRight } from 'lucide-react';
+import { Button } from '@/components/ui/button';
+import { Card, CardContent } from '@/components/ui/card';
+
+interface Testimonial {
+ id: string;
+ name: string;
+ role: string;
+ company: string;
+ content: string;
+ rating: number;
+ avatar: string;
+ metrics?: {
+ label: string;
+ value: string;
+ };
+}
+
+const testimonials: Testimonial[] = [
+ {
+ id: '1',
+ name: 'Sarah Chen',
+ role: 'Freelance Designer',
+ company: 'Chen Creative Studio',
+ content: "0 finance completely transformed how I handle my business finances. I used to spend 2-3 hours every week on invoicing and payment tracking. Now it's all automated, and I can focus on what I love - designing.",
+ rating: 5,
+ avatar: 'SC',
+ metrics: {
+ label: 'Time saved per month',
+ value: '12+ hours'
+ }
+ },
+ {
+ id: '2',
+ name: 'Marcus Rodriguez',
+ role: 'Marketing Consultant',
+ company: 'Growth Labs',
+ content: "The AI-powered expense categorization is incredible. My quarterly tax prep went from a nightmare to a 5-minute review. The high-yield vault has also earned me an extra $2,400 this year on idle cash.",
+ rating: 5,
+ avatar: 'MR',
+ metrics: {
+ label: 'Extra earnings this year',
+ value: '$2,400+'
+ }
+ },
+ {
+ id: '3',
+ name: 'Emma Thompson',
+ role: 'Content Creator',
+ company: 'Thompson Media',
+ content: "Having a global USD account has been game-changing for my international clients. Payments that used to take 5-7 days now arrive instantly. The automated invoicing saves me hours every month.",
+ rating: 5,
+ avatar: 'ET',
+ metrics: {
+ label: 'Faster payments',
+ value: 'Instant vs 5-7 days'
+ }
+ },
+ {
+ id: '4',
+ name: 'David Kim',
+ role: 'Software Developer',
+ company: 'Kim Development',
+ content: "I was skeptical about AI handling my finances, but 0 finance has been incredibly accurate. The expense tracking and tax categorization are spot-on, and I love earning yield on my business savings.",
+ rating: 5,
+ avatar: 'DK',
+ metrics: {
+ label: 'Accuracy rate',
+ value: '99.8%'
+ }
+ },
+ {
+ id: '5',
+ name: 'Lisa Wang',
+ role: 'Digital Agency Owner',
+ company: 'Pixel Perfect Agency',
+ content: "Managing cash flow for multiple clients used to be chaotic. 0 finance's automated sweep feature ensures our idle cash is always working for us. We've earned an extra 6% APY on our reserves.",
+ rating: 5,
+ avatar: 'LW',
+ metrics: {
+ label: 'APY on reserves',
+ value: '6.2%'
+ }
+ }
+];
+
+export function TestimonialsSection() {
+ const [currentIndex, setCurrentIndex] = useState(0);
+
+ const nextTestimonial = () => {
+ setCurrentIndex((prev) => (prev + 1) % testimonials.length);
+ };
+
+ const prevTestimonial = () => {
+ setCurrentIndex((prev) => (prev - 1 + testimonials.length) % testimonials.length);
+ };
+
+ const currentTestimonial = testimonials[currentIndex];
+
+ return (
+
+
+ {/* Header */}
+
+
+ Loved by thousands of businesses
+
+
+ See how 0 finance is helping businesses save time, earn more, and simplify their financial operations
+
+
+
+ {/* Stats Bar */}
+
+
+
+ $50M+
+
+
+ Processed
+
+
+
+
+ 2,500+
+
+
+ Happy Users
+
+
+
+
+ 15hrs
+
+
+ Saved Monthly
+
+
+
+
+ 6.2%
+
+
+ Avg APY
+
+
+
+
+ {/* Featured Testimonial */}
+
+
+
+ {/* Quote Icon */}
+
+
+ {/* Rating */}
+
+ {[...Array(5)].map((_, i) => (
+
+ ))}
+
+
+ {/* Content */}
+
+ “{currentTestimonial.content}”
+
+
+ {/* Author Info */}
+
+
+ {currentTestimonial.avatar}
+
+
+
+ {currentTestimonial.name}
+
+
+ {currentTestimonial.role} at {currentTestimonial.company}
+
+
+
+
+ {/* Metric */}
+ {currentTestimonial.metrics && (
+
+
+
+ {currentTestimonial.metrics.label}:
+
+
+ {currentTestimonial.metrics.value}
+
+
+
+ )}
+
+ {/* Navigation */}
+
+
+
+
+ {testimonials.map((_, index) => (
+
+
+
+
+
+
+
+
+ {/* Trust Indicators */}
+
+
+ Trusted by businesses in 50+ countries
+
+
+ {/* Placeholder for company logos */}
+
+ Y Combinator
+
+
+ Techstars
+
+
+ 500 Startups
+
+
+ Andreessen Horowitz
+
+
+
+
+
+ );
+}
\ No newline at end of file