CHORE(merge): merge from develop
- Initial setup and all features from develop branch - Includes: auth, deploy, docker, style fixes - K3S deployment configuration
This commit is contained in:
49
nextjs/app/layout.tsx
Normal file
49
nextjs/app/layout.tsx
Normal file
@@ -0,0 +1,49 @@
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import Script from "next/script";
|
||||
import "./globals.css";
|
||||
import Header from "@/components/widgets/Header";
|
||||
import Footer from "@/components/widgets/Footer";
|
||||
import SessionProvider from "@/components/providers/SessionProvider";
|
||||
import { metadata } from "./config";
|
||||
import { OrganizationJsonLd, WebSiteJsonLd } from "@/components/seo/JsonLd";
|
||||
|
||||
const geistSans = Geist({
|
||||
variable: "--font-geist-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export { metadata };
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
return (
|
||||
<html lang="ko" >
|
||||
<head>
|
||||
<OrganizationJsonLd />
|
||||
<WebSiteJsonLd />
|
||||
</head>
|
||||
<body
|
||||
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
|
||||
>
|
||||
<Script
|
||||
src="https://umami0213.kro.kr/script.js"
|
||||
data-website-id="5b673250-5798-4dd8-8103-c3d0e863474c"
|
||||
strategy="afterInteractive"
|
||||
/>
|
||||
<SessionProvider>
|
||||
<Header />
|
||||
{children}
|
||||
<Footer />
|
||||
</SessionProvider>
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user