import React from "react"; import { Swiper, SwiperSlide } from "swiper/react"; import { Autoplay, Pagination, Navigation } from "swiper/modules"; import "swiper/css"; import { Button } from "@/shared/libs/shadcn/ui/button"; import { useRouter } from "next/navigation"; import { Badge } from "@/shared/libs/shadcn/ui/badge"; // Dummy data for slides, This only for testing, replace with actual data later const dummyData = [ { id: "jo21j189289", isClickable: true, title: "Yosuga no Sora", tags: ["Romance", "Drama", "Ecchi"], description: "A story about two siblings who fall in love with each other. This is a controversial anime that has been criticized for its incestuous themes. Viewer discretion is advised. Also, this anime is not suitable for children. Please watch it at your own risk.", buttonContent: "Watch Now", buttonLink: "https://www.example.com/yosuga-no-sora", imageUrl: "https://asset.tribunnews.com/rDUJvGRU7_qDX-G4IFc5tUn08vw=/1200x675/filters:upscale():quality(30):format(webp):focal(0.5x0.5:0.5x0.5)/style/foto/bank/originals/sora-kasugano-karakter-dalam-anime-dewasa-yosuga-no-sora.jpg", startDate: "2024-01-01", endDate: "2024-12-31", }, { id: "jo21j189290", isClickable: true, title: "Redo of Healer", tags: ["Action", "Fantasy", "Ecchi"], description: "A story about a healer who seeks revenge on those who wronged him. This is a controversial anime that has been criticized for its graphic violence and sexual content. Viewer discretion is advised. Also, this anime is not suitable for children. Please watch it at your own risk.", buttonContent: "Watch Now", buttonLink: "https://www.example.com/redo-of-healer", imageUrl: "https://miro.medium.com/v2/1*O5bv-7EXnRC-VWmqimVEow.jpeg", startDate: "2024-01-01", endDate: "2024-12-31", }, { id: "jo21j189291", isClickable: false, title: "Warning System", tags: [], description: "This is a warning system for anime that contain controversial content. This system is designed to inform viewers about the potential risks of watching certain anime. Viewer discretion is advised. Please watch these anime at your own risk.", buttonContent: "Watch Now", buttonLink: "https://www.example.com/boku-no-pico", imageUrl: "", startDate: "2024-01-01", endDate: "2024-12-31", }, ]; // End of dummy data const Hero = () => { const router = useRouter(); return (
console.log("slide change")} onSwiper={(swiper) => console.log(swiper)} className="h-full" // autoplay={{ delay: 5000, disableOnInteraction: false }} // modules={[Autoplay, Pagination, Navigation]} > {dummyData.map((slide) => slide.imageUrl ? ( // Slide with image background {slide.title}

{slide.title}

{slide.tags.map((tag) => ( {tag} ))}

Twelve years ago, a colossal demon fox terrorized the world. During the monster's attack on the Hidden Leaf Village, the Hokage—the village's leader and most powerful ninja—sacrifices himself to seal the beast inside a newborn, relieving civilization from destruction while dooming the baby to a lonely life. Now, after years of being shunned and bullied, Naruto Uzumaki pesters the village with elaborate pranks and vandalism. Despite these antics, he works hard to achieve his dream: to become the Hokage and earn the acknowledgement of those who have mistreated him for his entire life. Naruto joins Team 7, a ninja squad made up of two of his peers—prodigy Sasuke Uchiha and clever Sakura Haruno.

{slide.isClickable && ( )}
) : ( // Fallback for slides without image

{slide.title}

{slide.tags.map((tag) => ( {tag} ))}

Twelve years ago, a colossal demon fox terrorized the world. During the monster's attack on the Hidden Leaf Village, the Hokage—the village's leader and most powerful ninja—sacrifices himself to seal the beast inside a newborn, relieving civilization from destruction while dooming the baby to a lonely life. Now, after years of being shunned and bullied, Naruto Uzumaki pesters the village with elaborate pranks and vandalism. Despite these antics, he works hard to achieve his dream: to become the Hokage and earn the acknowledgement of those who have mistreated him for his entire life. Naruto joins Team 7, a ninja squad made up of two of his peers—prodigy Sasuke Uchiha and clever Sakura Haruno.

{slide.isClickable && ( )}
), )}
); }; export default Hero;