15 lines
467 B
TypeScript
15 lines
467 B
TypeScript
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}</>;
|
|
}
|