/* eslint-disable @next/next/no-img-element */ import { fluxgore } from "@/utils/fonts"; import { useRef, useState } from "react"; import { Swiper, SwiperSlide } from "swiper/react"; import type { Swiper as SwiperType } from "swiper"; import "swiper/css"; const iconPath = "/icons/swiper.svg"; function SwiperButton({ onClick, direction = "next", disabled = false, }: { onClick: () => void; direction?: "next" | "prev"; disabled?: boolean; }) { return ( ); } function Slide({ title, imageSrc }: { title: string; imageSrc: string }) { return (