diff --git a/public/images/tarot/tarot_table.png b/public/images/tarot/tarot_table.png new file mode 100644 index 0000000..b3f43cc Binary files /dev/null and b/public/images/tarot/tarot_table.png differ diff --git a/src/pages/tarot/Reading.jsx b/src/pages/tarot/Reading.jsx index 90935b7..d99083d 100644 --- a/src/pages/tarot/Reading.jsx +++ b/src/pages/tarot/Reading.jsx @@ -3,15 +3,38 @@ import './Tarot.css'; import { TAROT_DECK, CATEGORIES, SPREADS } from './data/cards'; import { useTarotShuffle } from './hooks/useTarotShuffle'; import { useTarotReading } from './hooks/useTarotReading'; +import TarotCard from './components/TarotCard'; import CardGrid from './components/CardGrid'; import SpreadSlots from './components/SpreadSlots'; import InterpretationPanel from './components/InterpretationPanel'; +const STEPS = [ + { id: 1, label: '질문 & 설정' }, + { id: 2, label: '카드 선택' }, + { id: 3, label: '해석' }, +]; + +function StepIndicator({ current }) { + return ( +