웹 디자인 전면 개편

This commit is contained in:
2026-02-17 08:15:41 +09:00
parent 7042373448
commit 028bda551f
16 changed files with 1850 additions and 1050 deletions

View File

@@ -1,21 +1,16 @@
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: "생년월일로 무료로 사주팔자, 오늘의 운세, 궁합, 토정비결을 확인하세요. 쟁승메이드가 제공하는 정확한 사주 서비스입니다.",
title: "사주포춘 - AI가 만난 고대의 지혜 | 사주팔자, 운세, 궁합, 토정비결",
description: "전통 역학과 AI 기술의 만남. 생년월일로 정확한 사주팔자, 오늘의 운세, 궁합, 토정비결을 확인하세요. 98% 정확도의 프리미엄 사주 서비스입니다.",
keywords: ["사주", "사주팔자", "운세", "궁합", "토정비결", "AI 사주", "무료 사주", "오늘의 운세"],
openGraph: {
title: "사주포춘 - AI가 만난 고대의 지혜",
description: "전통 역학과 AI 기술의 만남. 정확한 사주 분석 서비스",
type: "website",
},
};
export default function RootLayout({
@@ -23,11 +18,18 @@ export default function RootLayout({
}: Readonly<{
children: React.ReactNode;
}>) {
const kakaoAppKey = process.env.NEXT_PUBLIC_KAKAO_APP_KEY;
return (
<html lang="ko">
<head>
{/* Pretendard 폰트 로드 */}
<link
rel="stylesheet"
as="style"
crossOrigin="anonymous"
href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css"
/>
{/* 결제 및 소셜 스크립트 */}
<script src="https://cdn.iamport.kr/v1/iamport.js"></script>
<script
src="https://t1.kakaocdn.net/kakao_js_sdk/2.7.0/kakao.min.js"
@@ -36,9 +38,7 @@ export default function RootLayout({
async
></script>
</head>
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
<body className="antialiased">
{children}
</body>
</html>