Files
xrlms/src/app/layout.tsx

22 lines
353 B
TypeScript
Raw Normal View History

2025-11-15 23:46:47 +09:00
import type { Metadata } from "next";
import "./globals.css";
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,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
2025-11-16 00:10:16 +09:00
<body>
2025-11-15 23:46:47 +09:00
{children}
</body>
</html>
);
}