This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Carousel from "./Carousel"; | |
import img1 from "path-to-local-image.jpg"; | |
import img2 from "path-to-local-image.jpg"; | |
import img3 from "path-to-local-image.jpg"; | |
export default function ImageCarousel() { | |
const slides = [img1, img2, img3]; | |
return ( | |
<div className="relative"> |