From 9453474c69dc4892a93227fb8bce3dc8967f675e Mon Sep 17 00:00:00 2001 From: gahusb Date: Wed, 27 May 2026 02:06:52 +0900 Subject: [PATCH] =?UTF-8?q?feat(saju-ui-v2):=20Me.jsx=20=E2=80=94=20placeh?= =?UTF-8?q?older=20+=20=EB=B9=84=ED=99=9C=EC=84=B1=204=20=EC=B9=B4?= =?UTF-8?q?=EB=93=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/saju/Me.jsx | 51 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/pages/saju/Me.jsx diff --git a/src/pages/saju/Me.jsx b/src/pages/saju/Me.jsx new file mode 100644 index 0000000..d3dfb19 --- /dev/null +++ b/src/pages/saju/Me.jsx @@ -0,0 +1,51 @@ +import React from 'react'; +import './_shell/tokens.css'; +import './_shell/shell.css'; +import useViewportMode from './_shell/useViewportMode'; +import BottomNav from './_shell/BottomNav'; +import DesktopHeader from './_shell/DesktopHeader'; +import TopRibbon from './_shell/TopRibbon'; +import Mascot from './_shell/Mascot'; +import MascotBubble from './_shell/MascotBubble'; +import OrnateFrame from './_shell/OrnateFrame'; + +const DISABLED_CARDS = [ + { title: '내 사주 이력', desc: '저장된 풀이를 한 번에' }, + { title: '북마크', desc: '관심 가는 해석 즐겨찾기' }, + { title: '설정', desc: '알림·테마·계정' }, + { title: '문의', desc: '호령이 듣고 있어요' }, +]; + +export default function Me() { + const mode = useViewportMode(); + return ( +
+ {mode === 'desktop' && } +
+ +
+ + +
+ {DISABLED_CARDS.map((card) => ( + +
+ {card.title} +
+
{card.desc}
+
+ ))} +
+
+
+ {mode === 'mobile' && } +
+ ); +}