'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 (
{/* Background pattern */}
{/* Text Content */}

LET'S GO SAAT NYA KAMU JOIN!

Jadilah bagian dari komunitas developer terbesar di Indonesia. Tingkatkan skill, perluas jaringan, dan raih kesempatan karir bersama kami! Join Sekarang
{/* Illustration */}

180.000+

Programmer Sudah Bergabung

); }