Commit 0e7ab934 authored by Pantelis Malekas's avatar Pantelis Malekas
Browse files

fix: test remove roboto

parent b401ce58
Loading
Loading
Loading
Loading
Loading
+14 −4
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@ import React from 'react';

import { NextUIProvider } from '@nextui-org/react';
import type { Metadata } from 'next';
import { Roboto } from 'next/font/google';
import localFont from 'next/font/local';
import './globals.css';

export const metadata: Metadata = {
@@ -10,9 +10,19 @@ export const metadata: Metadata = {
  description: 'HypO Portal',
};

const roboto = Roboto({
  subsets: ['latin'],
  weight: ['100', '300', '400', '500', '700', '900'],
const roboto = localFont({
  src: [
    {
      path: './fonts/Roboto-Regular.woff2',
      weight: '400',
      style: 'normal',
    },
    {
      path: './fonts/Roboto-Bold.woff2',
      weight: '700',
      style: 'normal',
    },
  ],
});

export default function RootLayout({
+1 −9
Original line number Diff line number Diff line
/** @type {import('next').NextConfig} */
const nextConfig = {
    eslint: {
    ignoreDuringBuilds: true,
  },
  typescript: {
    ignoreBuildErrors: true,
  },

};
const nextConfig = {};

export default nextConfig;