import { wagreen } from "./asset"; // Import gambar WhatsApp untuk ikon import { motion } from "framer-motion"; import { useEffect, useState } from "react"; const BottomCTA = () => { const [isVisible, setIsVisible] = useState(false); useEffect(() => { const handleScroll = () => { const scrollY = window.scrollY; const triggerHeight = window.innerHeight / 1.5; setIsVisible(scrollY > triggerHeight); }; window.addEventListener("scroll", handleScroll); return () => window.removeEventListener("scroll", handleScroll); }, []); return (
{/* Animasi teks turun dari atas saat di-scroll */}

Masih punya pertanyaan seputar

#Rekan AI ?

Jika pertanyaan Anda belum terjawab di atas, jangan ragu untuk menghubungi kami melalui formulir
kontak atau email. Kami dengan senang hati akan membantu!
{/* Animasi tombol keluar dari kanan dan kiri saat di-scroll */}
WhatsApp Icon Konsultasi Gratis Coba Sekarang
); }; export default BottomCTA;