import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"], }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { title: "사주보기 - 무료 사주팔자, 운세, 궁합, 토정비결", description: "생년월일로 무료로 사주팔자, 오늘의 운세, 궁합, 토정비결을 확인하세요. 쟁승메이드가 제공하는 정확한 사주 서비스입니다.", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { const kakaoAppKey = process.env.NEXT_PUBLIC_KAKAO_APP_KEY; return ( {children} ); }