import React from 'react'; import { motion } from 'framer-motion'; import { Button } from '@/components/ui/button'; import { ChevronLeft, ChevronRight, Home } from 'lucide-react'; export default function SlideNavigation({ currentSlide, totalSlides, onPrev, onNext, onHome, chapterTitle }) { return (
{/* Progress Dots */}
{Array.from({ length: totalSlides }).map((_, i) => ( ))}
{/* Slide Counter (Mobile) */}
{currentSlide + 1} / {totalSlides}
{/* Navigation Buttons */}
); }