'use client'; import { Button } from '@imphnen-frontend-service/shadcn-ui/atoms'; import { motion, useInView } from 'framer-motion'; import { useRef } from 'react'; export function CallToAction() { const ref = useRef(null); const isInView = useInView(ref, { once: true, amount: 0.2 }); return (
{/* Background Elements */}

Siap Menjadi{' '} Programmer Handal?

Bergabunglah dengan komunitas IMPHNEN sekarang dan mulai perjalanan programming mu dengan cara yang menyenangkan!

{/* Decorative Elements */}
); }