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'; import DesktopHero from './_shell/DesktopHero'; import DesktopFooter from './_shell/DesktopFooter'; import PrimaryButton from './_shell/PrimaryButton'; import { IconPaw } from './_shell/Icons'; const DISABLED_CARDS = [ { title: '내 사주 이력', desc: '저장된 풀이를 한 번에' }, { title: '북마크', desc: '관심 가는 해석 즐겨찾기' }, { title: '설정', desc: '알림·테마·계정' }, { title: '문의', desc: '호령이 듣고 있어요' }, ]; export default function Me() { const mode = useViewportMode(); return (
{mode === 'desktop' && } {mode === 'desktop' ? (
걱정 마세요!
저와 함께 차근차근
풀어가요.
} />
전문가와 1:1 맞춤 상담
사주풀이를 넘어, 인생의 큰 결정 앞에서 길잡이가 필요하실 때
검증된 명리학 전문가가 30분간 깊이 있게 풀어드립니다.
상담 신청하기
) : (
{DISABLED_CARDS.map((card) => (
{card.title}
{card.desc}
))}
)} {mode === 'mobile' && } ); }