Files
LangBot/web/src/app/layout.tsx
2025-04-28 21:41:03 +08:00

23 lines
387 B
TypeScript

import "./global.css"
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={``}>
{children}
</body>
</html>
);
}