44 lines
1.6 KiB
TypeScript
44 lines
1.6 KiB
TypeScript
'use client'
|
|
|
|
import SankeyDiagram from '@/components/visualizations/SankeyDiagram'
|
|
import SectionHeader from '@/components/ui/SectionHeader'
|
|
import ScrollReveal from '@/components/ui/ScrollReveal'
|
|
import { naturalFlows } from '@/lib/sankey-data'
|
|
|
|
export default function NatureFlowsSection() {
|
|
return (
|
|
<section className="min-h-screen flex flex-col items-center justify-center relative px-4 py-24">
|
|
<div className="absolute inset-0 bg-gradient-to-b from-deep via-ocean to-deep" />
|
|
|
|
{/* Subtle teal ambient light */}
|
|
<div
|
|
className="absolute top-1/3 left-1/4 w-[500px] h-[500px] rounded-full opacity-30"
|
|
style={{ background: 'radial-gradient(circle, rgba(45, 212, 191, 0.06) 0%, transparent 70%)' }}
|
|
/>
|
|
|
|
<div className="relative z-10 max-w-5xl w-full text-center">
|
|
<SectionHeader>Natural Flows</SectionHeader>
|
|
|
|
<ScrollReveal delay={0.2}>
|
|
<div className="my-14 rounded-2xl overflow-hidden p-4 bg-ocean/30">
|
|
<SankeyDiagram
|
|
data={naturalFlows}
|
|
showLabels={false}
|
|
speed="slow"
|
|
showParticles={true}
|
|
showDistortion={true}
|
|
maxParticles={8}
|
|
/>
|
|
</div>
|
|
</ScrollReveal>
|
|
|
|
<ScrollReveal delay={0.4}>
|
|
<p className="font-caveat text-xl md:text-2xl text-foam/45 max-w-2xl mx-auto leading-relaxed">
|
|
In living systems, value doesn't accumulate. It <span className="text-flow/70">circulates</span>.
|
|
</p>
|
|
</ScrollReveal>
|
|
</div>
|
|
</section>
|
|
)
|
|
}
|