Files
xrlms/src/app/layout.tsx
koreacomp5 d3507faa7e font 적용
2025-11-16 18:21:27 +09:00

21 lines
422 B
TypeScript

import type { Metadata } from "next";
import "./globals.css";
import { pretendard } from "./fonts";
export const metadata: Metadata = {
title: "XRLMS",
description: "XRLMS(description)",
};
export default function RootLayout({
children,
}: Readonly<{ children: React.ReactNode; }>) {
return (
<html lang="en">
<body className={pretendard.className}>
{children}
</body>
</html>
);
}