├── .gitignore ├── index.html ├── package.json ├── public └── vite.svg ├── src ├── App.css ├── App.tsx ├── assets │ └── react.svg ├── components │ ├── carousel-1 │ │ ├── 1.svg │ │ ├── 2.svg │ │ ├── 3.svg │ │ ├── Carousel.tsx │ │ └── styles.css │ ├── carousel-2 │ │ ├── Carousel.tsx │ │ ├── card-1.svg │ │ ├── card-2.svg │ │ ├── card-3.svg │ │ └── styles.css │ ├── carousel-3 │ │ ├── Carousel.tsx │ │ ├── image-1.jpg │ │ ├── image-2.jpg │ │ ├── image-3.jpg │ │ ├── image-4.jpg │ │ ├── image-5.jpg │ │ ├── image-6.jpg │ │ ├── image-7.jpg │ │ └── styles.css │ ├── carousel-4 │ │ ├── Carousel.tsx │ │ ├── image.jpeg │ │ ├── image.jpg │ │ └── styles.css │ └── carousel-5 │ │ ├── Carousel.tsx │ │ └── styles.css ├── index.css ├── main.tsx └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/.gitignore -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/package.json -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/carousel-1/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-1/1.svg -------------------------------------------------------------------------------- /src/components/carousel-1/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-1/2.svg -------------------------------------------------------------------------------- /src/components/carousel-1/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-1/3.svg -------------------------------------------------------------------------------- /src/components/carousel-1/Carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-1/Carousel.tsx -------------------------------------------------------------------------------- /src/components/carousel-1/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-1/styles.css -------------------------------------------------------------------------------- /src/components/carousel-2/Carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-2/Carousel.tsx -------------------------------------------------------------------------------- /src/components/carousel-2/card-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-2/card-1.svg -------------------------------------------------------------------------------- /src/components/carousel-2/card-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-2/card-2.svg -------------------------------------------------------------------------------- /src/components/carousel-2/card-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-2/card-3.svg -------------------------------------------------------------------------------- /src/components/carousel-2/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-2/styles.css -------------------------------------------------------------------------------- /src/components/carousel-3/Carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-3/Carousel.tsx -------------------------------------------------------------------------------- /src/components/carousel-3/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-3/image-1.jpg -------------------------------------------------------------------------------- /src/components/carousel-3/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-3/image-2.jpg -------------------------------------------------------------------------------- /src/components/carousel-3/image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-3/image-3.jpg -------------------------------------------------------------------------------- /src/components/carousel-3/image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-3/image-4.jpg -------------------------------------------------------------------------------- /src/components/carousel-3/image-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-3/image-5.jpg -------------------------------------------------------------------------------- /src/components/carousel-3/image-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-3/image-6.jpg -------------------------------------------------------------------------------- /src/components/carousel-3/image-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-3/image-7.jpg -------------------------------------------------------------------------------- /src/components/carousel-3/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-3/styles.css -------------------------------------------------------------------------------- /src/components/carousel-4/Carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-4/Carousel.tsx -------------------------------------------------------------------------------- /src/components/carousel-4/image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-4/image.jpeg -------------------------------------------------------------------------------- /src/components/carousel-4/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-4/image.jpg -------------------------------------------------------------------------------- /src/components/carousel-4/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-4/styles.css -------------------------------------------------------------------------------- /src/components/carousel-5/Carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-5/Carousel.tsx -------------------------------------------------------------------------------- /src/components/carousel-5/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/components/carousel-5/styles.css -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/react-carousels/HEAD/vite.config.ts --------------------------------------------------------------------------------