From 7e8276842381fe43f56c1d09e3cd9f4f5a9252c5 Mon Sep 17 00:00:00 2001 From: "fredy.siswanto" Date: Mon, 24 Feb 2025 23:30:01 +0700 Subject: [PATCH] refactor: clean up Carousel component by removing commented-out code --- app/components/ui/carousel.tsx | 115 --------------------------------- 1 file changed, 115 deletions(-) diff --git a/app/components/ui/carousel.tsx b/app/components/ui/carousel.tsx index 8ff5ab4..378df8b 100644 --- a/app/components/ui/carousel.tsx +++ b/app/components/ui/carousel.tsx @@ -27,121 +27,6 @@ export const Carousel = (properties: TNews) => { ) } return ( - //
- //
- //
- //

- // {title} - //

- //

- // {description} - //

- //
- // {!hasCategory && ( - //
- // - // - //
- // )} - //
- //
- // {items.map(({ featured, title, content, tags, slug }, index) => ( - //
- // {title} - //
- //
- // {tags?.map((item, index) => ( - // - // {item} - // - // ))} - //
- - //
- //

- // {title} - //

- //

- // {content} - //

- //
- // - //
- //
- // ))} - //
- // {hasCategory && ( - //
- //
- // - // - //
- //
- // )} - //
-