titles/app/layout.tsx

26 lines
575 B
TypeScript
Raw Normal View History

2024-05-16 11:44:35 +00:00
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
2024-05-17 08:44:41 +00:00
import { NextUIProvider } from "@nextui-org/system";
2024-05-16 11:44:35 +00:00
const inter = Inter({ subsets: ["latin"] });
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">
2024-05-17 08:44:41 +00:00
<body className={inter.className}>
<NextUIProvider>{children}</NextUIProvider>
</body>
2024-05-16 11:44:35 +00:00
</html>
);
}