- Upgrade Nx 22.1.1 → 22.6.3 and all patch/minor dependencies - Restructure shared libs: move business logic from utils to service - Consolidate shadcn-ui into ui lib with atomic design pattern - Fix container centering for landing app (Tailwind v4 compatibility) - Fix button styling by updating @source directive in globals.css - Fix SiCss3 → SiCss rename in react-icons 5.6 - Fix duplicate useSession export conflict - Remove dead code, comments, and unused files Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
92 lines
4.0 KiB
TypeScript
92 lines
4.0 KiB
TypeScript
'use client';
|
|
|
|
import { LogoSimple } from '@/app/_components/logo';
|
|
import { motion, useInView } from 'framer-motion';
|
|
import { useRef } from 'react';
|
|
import { FaArrowRight } from 'react-icons/fa';
|
|
|
|
export function CTASection() {
|
|
const ref = useRef(null);
|
|
const isInView = useInView(ref, { once: true, amount: 0.2 });
|
|
|
|
return (
|
|
<section className="w-full py-20 md:py-32 bg-gradient-to-br from-primary-500 to-primary-600 relative overflow-hidden">
|
|
|
|
<div
|
|
className="absolute inset-0 opacity-10"
|
|
style={{
|
|
backgroundImage: `url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E")`,
|
|
}}
|
|
></div>
|
|
|
|
<div className="container relative" ref={ref}>
|
|
<div className="flex flex-col lg:flex-row items-center justify-between gap-12">
|
|
|
|
<div className="flex-1 text-center lg:text-left space-y-8">
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 30 }}
|
|
animate={isInView ? { opacity: 1, y: 0 } : {}}
|
|
transition={{ duration: 0.6 }}
|
|
>
|
|
<h2 className="text-4xl md:text-5xl font-bold text-white leading-tight">
|
|
<span className="block">LET'S GO</span>
|
|
<span className="block text-5xl md:text-6xl mt-2">
|
|
<span className="text-yellow-300">SAAT</span>
|
|
<span className="text-white">NYA</span>
|
|
</span>
|
|
<span className="block mt-2">KAMU JOIN!</span>
|
|
</h2>
|
|
</motion.div>
|
|
|
|
<motion.p
|
|
initial={{ opacity: 0 }}
|
|
animate={isInView ? { opacity: 1 } : {}}
|
|
transition={{ delay: 0.3 }}
|
|
className="text-lg md:text-xl text-white/90 max-w-2xl mx-auto lg:mx-0"
|
|
>
|
|
Jadilah bagian dari komunitas developer terbesar di Indonesia.
|
|
Tingkatkan skill, perluas jaringan, dan raih kesempatan karir
|
|
bersama kami!
|
|
</motion.p>
|
|
|
|
<motion.div
|
|
initial={{ scale: 0.8, opacity: 0 }}
|
|
animate={isInView ? { scale: 1, opacity: 1 } : {}}
|
|
transition={{ type: 'spring', stiffness: 100 }}
|
|
className="flex justify-center lg:justify-start"
|
|
>
|
|
<a
|
|
href="#community"
|
|
className="flex items-center gap-4 px-8 py-4 bg-yellow-300 hover:bg-yellow-400 text-gray-900 rounded-full text-lg font-semibold transition-all hover:gap-6 group"
|
|
>
|
|
<span>Join Sekarang</span>
|
|
<FaArrowRight className="w-5 h-5 transition-all group-hover:rotate-45" />
|
|
</a>
|
|
</motion.div>
|
|
</div>
|
|
|
|
<motion.div
|
|
initial={{ opacity: 0, x: 50 }}
|
|
animate={isInView ? { opacity: 1, x: 0 } : {}}
|
|
transition={{ delay: 0.2 }}
|
|
className="flex-1 max-w-xl"
|
|
>
|
|
<div className="relative p-8">
|
|
<div className="absolute inset-0 bg-white/10 rounded-3xl transform rotate-6"></div>
|
|
<div className="relative bg-white/5 rounded-3xl p-8 backdrop-blur-lg border border-white/10">
|
|
<div className="flex flex-col items-center gap-6 text-white">
|
|
<LogoSimple className="w-[240px]" />
|
|
<div className="text-center space-y-2">
|
|
<h3 className="text-2xl font-bold">250.000+</h3>
|
|
<p className="text-lg">Programmer Sudah Bergabung</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</motion.div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|