"use client"; import React from "react"; import { motion } from "motion/react"; import { Parallax } from "@/components/parallax/Parallax"; import { TRANSITIONS } from "@/lib/animation"; /** * Lightweight logo/text marquee with reveal-in animations. * Replace placeholder items with real logos as needed. */ export function TestimonialsSection() { const items = [ "Biohazard VFX", "Fortura Data", "Cinematic Labs", "Nebula Studio", "Pixel Foundry", "Prisma Motion", ]; return (
Trusted by teams who care about craft Subtle marquee with tasteful depth and reveals.
{/* Edge gradient masks */}
{/* Marquee row 1 */} {[...items, ...items].map((it, i) => ( ))} {/* Marquee row 2 (reverse) */} {[...items, ...items].map((it, i) => ( ))}
); } function LogoPill({ text }: { text: string }) { return ( {text} ); }