"use client"; import Image from "next/image"; import { motion } from "framer-motion"; import { useState } from "react"; const stars = Array.from({ length: 5 }, (_, i) => i); export function SignupTestimonialPanel() { const [imgError, setImgError] = useState(false); return ( {/* Testimonial card */}
{stars.map((i) => ( ))}
“LedgerOne helped us understand cash flow before problems surfaced. The experience feels fast, clear, and built for modern finance teams.”

Sarah Chen

Head of Finance, Northwind

{/* Dashboard preview */}
{!imgError ? ( LedgerOne dashboard preview setImgError(true)} /> ) : (

Your dashboard

Cash flow, insights, and AI predictions in one place.

)}
{/* Floating insight card */}

AI insight: Your runway is healthy. Safe to spend up to $2,400 this week.

Join 50,000+ teams who trust LedgerOne for financial clarity.

); }