Skip to content

Commit 5355a7f

Browse files
author
Petr Konecny
committed
fix: renamed timer pagination
1 parent 3a49865 commit 5355a7f

File tree

6 files changed

+7
-110
lines changed

6 files changed

+7
-110
lines changed

example/app/(examples)/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ const examples = [
2525
route: '/entering-animation' as const,
2626
},
2727
{
28-
title: 'Instagram Pagination',
29-
description: 'Instagram-style pagination with auto-slide progress indicator',
30-
route: '/instagram-pagination' as const,
28+
title: 'Timer Pagination Carousel',
29+
description: 'Timer-based pagination with auto-slide progress indicator',
30+
route: '/timer-pagination' as const,
3131
},
3232
{
3333
title: 'Video Carousel',

example/app/(examples)/instagram-pagination.tsx

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import TimerPaginationExample from '@/examples/TimerPaginationExample'
2+
3+
export default TimerPaginationExample

example/examples/InstagramPaginationExample.tsx renamed to example/examples/TimerPaginationExample.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const Slide = ({
4545
)
4646
}
4747

48-
export default function InstagramPaginationExample() {
48+
export default function TimerPaginationExample() {
4949
// Preload all images when component mounts
5050
useEffect(() => {
5151
Image.prefetch(images)

example/examples/components/TimerPagination.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ const PaginationDot = ({
4444
)
4545
}
4646

47-
// Instagram-like pagination component
4847
export const TimerPagination = ({
4948
total,
5049
hideProgressOnInteraction,

src/context/AutoScrollContext/index.tsx

Lines changed: 0 additions & 102 deletions
This file was deleted.

0 commit comments

Comments
 (0)