Files
xrlms/src/app/layout.tsx

23 lines
472 B
TypeScript
Raw Normal View History

2025-11-15 23:46:47 +09:00
import type { Metadata } from "next";
import "./globals.css";
2025-11-16 17:44:47 +09:00
import { pretendard } from "./fonts";
2025-11-18 06:19:26 +09:00
import NavBar from "./NavBar";
2025-11-15 23:46:47 +09:00
export const metadata: Metadata = {
2025-11-16 00:10:16 +09:00
title: "XRLMS",
description: "XRLMS(description)",
2025-11-15 23:46:47 +09:00
};
export default function RootLayout({
children,
2025-11-16 17:44:47 +09:00
}: Readonly<{ children: React.ReactNode; }>) {
2025-11-15 23:46:47 +09:00
return (
2025-11-18 03:27:30 +09:00
<html lang="ko">
2025-11-16 17:44:47 +09:00
<body className={pretendard.className}>
2025-11-18 06:19:26 +09:00
<NavBar />
2025-11-15 23:46:47 +09:00
{children}
</body>
</html>
);
}