21 lines
422 B
TypeScript
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>
|
|
);
|
|
}
|