import { createContext, useContext } from "react"; const CardDepthContext = createContext(0); export function useCardDepth() { return useContext(CardDepthContext); } export function CardDepthProvider({ children }: { children: React.ReactNode }) { const depth = useCardDepth(); return ( {children} ); }