Loading app/layout.tsx +7 −1 Original line number Diff line number Diff line Loading @@ -2,6 +2,7 @@ import React from 'react'; import { NextUIProvider } from '@nextui-org/react'; import type { Metadata } from 'next'; import { Roboto } from 'next/font/google'; import './globals.css'; export const metadata: Metadata = { Loading @@ -9,13 +10,18 @@ export const metadata: Metadata = { description: 'HypO Portal', }; const roboto = Roboto({ subsets: ['latin'], weight: ['100', '300', '400', '500', '700', '900'], }); export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( <html lang="en"> <html lang="en" className={roboto.className}> <body> <NextUIProvider className="h-full">{children}</NextUIProvider> </body> Loading Loading
app/layout.tsx +7 −1 Original line number Diff line number Diff line Loading @@ -2,6 +2,7 @@ import React from 'react'; import { NextUIProvider } from '@nextui-org/react'; import type { Metadata } from 'next'; import { Roboto } from 'next/font/google'; import './globals.css'; export const metadata: Metadata = { Loading @@ -9,13 +10,18 @@ export const metadata: Metadata = { description: 'HypO Portal', }; const roboto = Roboto({ subsets: ['latin'], weight: ['100', '300', '400', '500', '700', '900'], }); export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( <html lang="en"> <html lang="en" className={roboto.className}> <body> <NextUIProvider className="h-full">{children}</NextUIProvider> </body> Loading