'use client' import ScrollReveal from '@/components/ui/ScrollReveal' const lines = [ { text: 'NoFi was the diagnosis.', accent: false }, { text: 'FlowFi is the prognosis.', accent: true }, { text: 'Not no flows — better flows.', accent: false }, { text: 'Not no finance — living finance.', accent: false }, { text: 'Finance as metabolism, not mechanism.', accent: true }, ] export default function TransitionSection() { return (
{/* Flowing light streak */}
{lines.map((line, i) => (

{line.text}

))}
) }