44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Inter, JetBrains_Mono } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const inter = Inter({
|
|
subsets: ["latin"],
|
|
variable: "--font-inter",
|
|
display: "swap",
|
|
});
|
|
|
|
const jetbrainsMono = JetBrains_Mono({
|
|
subsets: ["latin"],
|
|
variable: "--font-jetbrains-mono",
|
|
display: "swap",
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "PLM 솔루션 - WACE",
|
|
description: "제품 수명 주기 관리(PLM) 솔루션",
|
|
keywords: ["PLM", "Product Lifecycle Management", "WACE", "제품관리"],
|
|
authors: [{ name: "WACE" }],
|
|
viewport: "width=device-width, initial-scale=1",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="ko" className="h-full">
|
|
<head>
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<meta name="theme-color" content="#0f172a" />
|
|
</head>
|
|
<body className={`${inter.variable} ${jetbrainsMono.variable} h-full bg-white font-sans antialiased`}>
|
|
<div id="root" className="h-full">
|
|
{children}
|
|
</div>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|