"use client"; import { FaArrowRightLong } from "react-icons/fa6"; import { FaWhatsapp } from "react-icons/fa"; import { useRouter } from "next/navigation"; const PremiumBannerOne = ({ data, bannerImage }) => { const { header2, description2 } = data ?? {}; const router = useRouter(); const banner = bannerImage ?? "/consultation_banner_1.webp"; return (

{header2 ?? "Personalized Rudraksha Consultation for Your Sacred Journey"}

{description2 ?? "Whether you seek clarity on selecting the right Rudraksha for your spiritual goals or a deeper understanding of the sacred beads, our consultations are crafted to provide you with the wisdom and direction you seek ."}

{/*
*/}
); }; export default PremiumBannerOne;