feat(tarot): 랜딩 상단 nav + account 제거, ARCANA TAROT brand만 유지

topbar wrapper 제거, brand가 hero-content 직속 첫 자식이 됨.
nav(오늘의 카드/타로 리딩/스프레드/가이드/마이 페이지) + account(프리미엄/로그인)
모두 제거 — brand 단독으로 좌상단 표시.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-24 02:04:12 +09:00
parent 840cc28043
commit 6d73a075f7
2 changed files with 564 additions and 126 deletions

View File

@@ -1,68 +1,72 @@
import React, { useRef, useEffect } from 'react';
import React from 'react';
import { Link } from 'react-router-dom';
import './Tarot.css';
export default function Tarot() {
const videoRef = useRef(null);
useEffect(() => {
const reduced = window.matchMedia('(prefers-reduced-motion: reduce)').matches;
const saveData = navigator.connection?.saveData;
if ((reduced || saveData) && videoRef.current) {
videoRef.current.pause();
videoRef.current.style.display = 'none';
}
}, []);
return (
<div className="tarot tarot--landing">
<video
ref={videoRef}
className="tarot__hero-video"
src="/videos/tarot_hero.mp4"
autoPlay loop muted playsInline preload="metadata"
poster="/images/tarot_background.png"
/>
<img className="tarot__hero-poster" src="/images/tarot_background.png" alt="" aria-hidden />
<div className="tarot__hero-overlay" />
<div className="tarot__corner tarot__corner--left" aria-hidden />
<div className="tarot__corner tarot__corner--right" aria-hidden />
<div className="tarot__hero-content">
<div className="tarot__topbar">
<header className="tarot__brand">
<span></span>
<span>ARCANA TAROT</span>
</header>
<header className="tarot__brand" aria-label="Arcana Tarot">
<span className="tarot__brand-spark" aria-hidden></span>
<span className="tarot__brand-mark" aria-hidden>A</span>
<span className="tarot__brand-name">ARCANA TAROT</span>
<span className="tarot__brand-spark" aria-hidden></span>
</header>
<nav className="tarot__nav" aria-label="Tarot navigation">
<Link to="/tarot/today">오늘의 카드</Link>
<Link to="/tarot/reading">타로 리딩</Link>
<Link to="/tarot/history">히스토리</Link>
</nav>
<section className="tarot__hero-copy" aria-labelledby="tarot-landing-title">
<h1 id="tarot-landing-title" className="tarot__h1">
당신의<br />
오늘을 비추는 타로
</h1>
<div className="tarot__ornament" aria-hidden>
<span />
<b></b>
<span />
</div>
<p className="tarot__sub">
카드를 뽑고, 당신만을 위한 인사이트를 받아보세요.<br />
운명은 이미 당신 안에 있습니다.
</p>
<div className="tarot__cta-row">
<Link to="/tarot/reading" className="tarot__cta">
<span aria-hidden></span>
지금 시작하기
<span className="tarot__cta-arrow" aria-hidden></span>
</Link>
<Link to="/tarot/today" className="tarot__cta tarot__cta--secondary">
<span className="tarot__card-icon" aria-hidden />
오늘의 카드
</Link>
</div>
</section>
<div id="tarot-guide" className="tarot__tier-row" aria-label="Tarot features">
<article className="tarot__tier">
<span className="tarot__tier-icon tarot__tier-icon--sun" aria-hidden />
<h3>오늘의 운세</h3>
<p>매일 장의 카드로<br />오늘의 흐름을 확인하세요.</p>
</article>
<article className="tarot__tier">
<span className="tarot__tier-icon tarot__tier-icon--cards" aria-hidden />
<h3>3 스프레드</h3>
<p>과거·현재·미래를 통해<br /> 깊은 해답을 얻어보세요.</p>
</article>
<article className="tarot__tier">
<span className="tarot__tier-icon tarot__tier-icon--moon" aria-hidden />
<h3>AI 해석</h3>
<p>AI가 전하는 통찰로<br />나만의 리딩을 완성하세요.</p>
</article>
</div>
<h1 className="tarot__h1">당신의 오늘을<br />비추는 타로</h1>
<p className="tarot__sub">
카드를 펼쳐, 당신만의 인사이트를 받아보세요.
라이더-웨이트 덱과 Claude Sonnet 4.6 해석이 함께합니다.
</p>
<div className="tarot__cta-row">
<Link to="/tarot/reading" className="tarot__cta">지금 시작하기 </Link>
<Link to="/tarot/today" className="tarot__cta tarot__cta--secondary">오늘의 카드</Link>
</div>
<div className="tarot__tier-row">
<article className="tarot__tier">
<h3>🌙 오늘의 운세</h3>
<p>매일 1장의 카드로 오늘의 흐름을 확인하세요.</p>
</article>
<article className="tarot__tier">
<h3>🃏 3 스프레드</h3>
<p>과거·현재·미래의 흐름을 한눈에 읽어봅니다.</p>
</article>
<article className="tarot__tier">
<h3> AI 해석</h3>
<p>Claude Sonnet 4.6 카드 의미·위치·상호작용을 근거로 풀어줍니다.</p>
</article>
<div className="tarot__scroll-cue" aria-hidden>
<span>SCROLL TO DISCOVER</span>
<b></b>
</div>
</div>
</div>