Commit 119a61d6 authored by Pantelis Malekas's avatar Pantelis Malekas
Browse files

fix: revert roboto style

parent def66f04
Loading
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -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 = {
@@ -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>