From 25fef0aec641d3f9cb5771e8fbaef65540c3fd72 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 19:07:21 +0000 Subject: [PATCH] Switch to version 1: remove src/hooks/useCardAnimation.ts --- src/hooks/useCardAnimation.ts | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/hooks/useCardAnimation.ts diff --git a/src/hooks/useCardAnimation.ts b/src/hooks/useCardAnimation.ts deleted file mode 100644 index 4d7c504..0000000 --- a/src/hooks/useCardAnimation.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { useEffect, RefObject } from 'react'; - -export interface UseCardAnimationOptions { - containerRef: RefObject; - itemRefs: RefObject<(HTMLDivElement | null)[]>; - perspectiveRef?: RefObject; - bottomContentRef?: RefObject; -} - -export const useCardAnimation = (options: UseCardAnimationOptions) => { - const { containerRef, itemRefs, perspectiveRef, bottomContentRef } = options; - - useEffect(() => { - // Animation logic here - }, [containerRef, itemRefs, perspectiveRef, bottomContentRef]); - - return {}; -};