This commit is contained in:
2025-11-18 06:19:26 +09:00
parent e574caa7ce
commit 0452ca2c28
16 changed files with 1012 additions and 219 deletions

View File

@@ -1,6 +1,7 @@
import type { Metadata } from "next";
import "./globals.css";
import { pretendard } from "./fonts";
import NavBar from "./NavBar";
export const metadata: Metadata = {
title: "XRLMS",
@@ -13,6 +14,7 @@ export default function RootLayout({
return (
<html lang="ko">
<body className={pretendard.className}>
<NavBar />
{children}
</body>
</html>