Skip to content

Commit

Permalink
Update deck
Browse files Browse the repository at this point in the history
  • Loading branch information
D9J9V committed Sep 6, 2024
1 parent a7a8f00 commit 21926c2
Show file tree
Hide file tree
Showing 25 changed files with 1 addition and 1 deletion.
Binary file removed packages/nextjs/public/deck/01.jpeg
Binary file not shown.
Binary file added packages/nextjs/public/deck/01.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed packages/nextjs/public/deck/02.jpeg
Binary file not shown.
Binary file added packages/nextjs/public/deck/02.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed packages/nextjs/public/deck/03.jpeg
Binary file not shown.
Binary file added packages/nextjs/public/deck/03.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed packages/nextjs/public/deck/04.jpeg
Binary file not shown.
Binary file added packages/nextjs/public/deck/04.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed packages/nextjs/public/deck/05.jpeg
Binary file not shown.
Binary file added packages/nextjs/public/deck/05.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed packages/nextjs/public/deck/06.jpeg
Binary file not shown.
Binary file added packages/nextjs/public/deck/06.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed packages/nextjs/public/deck/07.jpeg
Binary file not shown.
Binary file added packages/nextjs/public/deck/07.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed packages/nextjs/public/deck/08.jpeg
Binary file not shown.
Binary file added packages/nextjs/public/deck/08.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed packages/nextjs/public/deck/09.jpeg
Binary file not shown.
Binary file added packages/nextjs/public/deck/09.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed packages/nextjs/public/deck/10.jpeg
Binary file not shown.
Binary file added packages/nextjs/public/deck/10.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed packages/nextjs/public/deck/11.jpeg
Binary file not shown.
Binary file added packages/nextjs/public/deck/11.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added packages/nextjs/public/deck/12.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added packages/nextjs/public/deck/13.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion packages/nextjs/src/app/_components/deck.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Image from "next/image";
export default function Deck() {
const deckImages = Array.from(
{ length: 11 },
(_, i) => `/deck/${(i + 1).toString().padStart(2, "0")}.jpeg`,
(_, i) => `/deck/${(i + 1).toString().padStart(2, "0")}.jpg`,
);
const [currentSlide, setCurrentSlide] = useState(0);
const carouselRef = useRef<HTMLDivElement>(null);
Expand Down

0 comments on commit 21926c2

Please sign in to comment.