"use client"; import React from "react"; import Image from "next/image"; import { motion } from "framer-motion"; import { ArrowRight } from "lucide-react"; const categories = [ { title: "Spirituality", image: "/one-two.jpg" }, { title: "Meditation", image: "/gallery1.jpg" }, { title: "Wellness", image: "/pooja_image.webp" }, ]; const BannerSlider = () => { return (
{/* Background image */} Background
{/* Text content */}

Discover Your Path

Astrology-Guided Personal Growth

Unlock your potential with our expert-led consultations and sacred Rudraksha beads.

Book a Consultation
{/* Static Cards */} {categories.map((category, index) => (
{category.title}

{category.title}

))}
); }; export default BannerSlider;