.
All checks were successful
Deploy blog-frontend / build-and-deploy (push) Successful in 2m5s

This commit is contained in:
wypark
2026-05-28 22:27:29 +09:00
parent 390778da3e
commit 8a2e05b003
31 changed files with 1221 additions and 385 deletions

View File

@@ -4,6 +4,7 @@ import Providers from './providers';
import Sidebar from '@/components/layout/Sidebar';
import TopHeader from '@/components/layout/TopHeader';
import Script from 'next/script';
import { THEME_INIT_SCRIPT } from '@/components/theme/theme';
export const metadata: Metadata = {
title: 'WYPark Blog',
@@ -16,11 +17,15 @@ export default function RootLayout({
children: React.ReactNode;
}) {
return (
<html lang="ko">
<html lang="ko" data-theme="light" data-theme-mode="system" suppressHydrationWarning>
<head>
<meta name="google-site-verification" content="cFJSK1ayy2Y4lqRKNv8wZ_vybg5De22zYCdbKSfvAJA" />
</head>
<body className="bg-[var(--color-page)] text-[var(--color-text)]">
<Script id="theme-init" strategy="beforeInteractive">
{THEME_INIT_SCRIPT}
</Script>
{/* 🌟 Google Analytics 스크립트 */}
<Script
src="https://www.googletagmanager.com/gtag/js?id=G-2GLCM9ZKMK"