'use client' import { ChevronRight } from 'lucide-react'; import React, { useState } from 'react' const CertificationBannerTwo = () => { const [selectedInfo, setSelectedInfo] = useState(0); const infoItems = [ { title: "Introduction", description: "Since 1973, Gupta Rudraksha has been committed to maintaining the highest quality standards for all its Rudraksha and Shaligram. To take our commitment to quality assurance even further, we have successfully complied with all the quality standards set forward by the International Organization for Standardization (ISO), and Gupta Rudraksha has been recognized as Nepal's first and only ISO 9001:2015 certified Rudraksha organization." }, { title: "100% lifetime Moneyback Authenticity Guarantee", description: "Gupta Rudraksha is dedicated to preserving the sacred and ancient tradition of Rudraksha while making it accessible to seekers worldwide. Our certification process reflects our unwavering commitment to authenticity, quality, and the spiritual well-being of our customers.Choose Rudraksha beads with the Gupta Rudraksha certification, and embark on your spiritual journey with confidence and trust." }, { title:"Book Premium Rudraksha Prana Pratistha Pooja", description:"All Our Pooja done based on your Birth Chart and your specific details following Vedic principles. Video Recording of the entire ceremony will be shared with you (Live Pooja is available upon request)." } ]; const handleInfoClick = (index) => { setSelectedInfo(index); }; return (
{infoItems[selectedInfo].description}