flowfi-network/components/sections/CTASection.tsx

54 lines
1.7 KiB
TypeScript

'use client'
import ScrollReveal from '@/components/ui/ScrollReveal'
export default function CTASection() {
return (
<section className="min-h-[60vh] flex flex-col items-center justify-center relative px-4 py-20">
<div className="absolute inset-0 bg-void" />
<div className="relative z-10 text-center max-w-3xl">
<ScrollReveal>
<h2 className="font-marker text-4xl md:text-6xl text-zen/80 mb-4 wobble-4">
Ready to <span className="text-flow-green">flow</span>?
</h2>
</ScrollReveal>
<ScrollReveal delay={0.2}>
<p className="font-caveat text-2xl text-zen/40 mb-12">
You already are.
</p>
</ScrollReveal>
<ScrollReveal delay={0.4}>
<p className="text-zen/20 text-sm mb-8">
NoFi FlowFi ???
</p>
</ScrollReveal>
<ScrollReveal delay={0.5}>
<a
href="https://nofi.lol"
className="inline-block border border-zen/10 px-8 py-4 text-zen/30 hover:text-flow-green/60 hover:border-flow-green/30 transition-all duration-1000 text-sm"
>
back to NoFi
</a>
</ScrollReveal>
</div>
{/* Footer */}
<footer className="relative z-10 w-full border-t border-zen/5 mt-20 pt-6 flex justify-between items-center max-w-4xl">
<span className="text-zen/15 text-xs">
Part of the CoFi cinematic universe
</span>
<a
href="https://nofi.lol"
className="text-zen/15 text-xs hover:text-flow-green/40 transition-all duration-1000"
>
nofi.lol
</a>
</footer>
</section>
)
}