titles/app/layout.tsx
ChrQR 3c39510aa3
All checks were successful
Vercel Preview Deployment / Deploy-Preview (push) Successful in 2m15s
set up nextui and framer motion
2024-05-17 10:44:41 +02:00

26 lines
575 B
TypeScript

import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import { NextUIProvider } from "@nextui-org/system";
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">
<body className={inter.className}>
<NextUIProvider>{children}</NextUIProvider>
</body>
</html>
);
}