feat(phase2): 타로 UI(3카드 리딩) + 카드 이미지 78종

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-02 21:17:52 +09:00
parent b3d845a532
commit a9f5d8cee6
82 changed files with 770 additions and 0 deletions

14
app/tarot/layout.tsx Normal file
View File

@@ -0,0 +1,14 @@
import type { Metadata } from 'next';
export const metadata: Metadata = {
title: '타로 리딩 | 쟁승메이드',
description: '3카드(과거·현재·미래) 타로 스프레드. AI가 카드 상징을 근거로 해석합니다.',
openGraph: {
title: '타로 리딩 | 쟁승메이드',
url: 'https://jaengseung-made.com/tarot',
},
};
export default function TarotLayout({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}