UNPKG

nextjs-panel

Version:

Schema-based admin panel generator for Next.js using Prisma and React components.

21 lines (17 loc) 513 B
import "./globals.css"; import { Inter } from "next/font/google"; const inter = Inter({ subsets: ['latin'], weight: ['100', '200', '300', '400', '500', '600', '700', '800', '900'], }); export const metadata = { title: "Create Next App", description: "Generated by create next app", }; export default function RootLayout({ children, }) { return (<html lang="en"> <body className={`${inter.className} antialiased`}> {children} </body> </html>); }