"use client"; import { motion } from "framer-motion"; import Link from "next/link"; const testimonials = [ { initials: "TC", name: "Tuxedo Corn Co.", location: "Olathe, Colorado", quote: "Route Commerce transformed how we manage our wholesale operations. Our pickup efficiency increased by 40% in the first month.", }, { initials: "IR", name: "Indian River Citrus", location: "Indian River, Florida", quote: "The Harvest Reach feature alone has recovered thousands in abandoned cart revenue. Game changer for our business.", }, ]; const containerVariants = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { staggerChildren: 0.15, delayChildren: 0.1, }, }, }; const itemVariants = { hidden: { opacity: 0, y: 24 }, visible: { opacity: 1, y: 0, transition: { duration: 0.6, ease: "easeOut" as const, }, }, }; const cardHoverVariants = { rest: { y: 0, boxShadow: "0 4px 24px rgba(26, 77, 46, 0.08)" }, hover: { y: -4, boxShadow: "0 12px 40px rgba(26, 77, 46, 0.12)", transition: { duration: 0.3, ease: "easeOut" }, }, }; export default function TestimonialsAndCTA() { return ( <> {/* ─── Testimonials Section ─────────────────────────────────────────────── */}
{/* Decorative botanical accent */}
{/* ─── CTA Section ──────────────────────────────────────────────────────── */}
{/* Decorative gradient orbs */}
); }