Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ body {
margin: 0px;
height: 100%;
overflow: hidden;
font-family: 'Manrope', sans-serif;
font-family: 'Roboto', 'Poppins', 'Manrope', sans-serif;
font-weight: 400;
background-color: #16142a;
-webkit-font-smoothing: antialiased;
Expand Down
13 changes: 12 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@ import Providers from './provider';
import './global.css';
import 'bootstrap/dist/css/bootstrap.css';
import ThemeProvider from './themeProvider';
import { Roboto, Poppins } from 'next/font/google';

const roboto = Roboto({
weight: ['100', '300', '400', '500', '700', '900'],
subsets: ['latin', 'latin-ext'],
});

const poppins = Poppins({
weight: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
subsets: ['latin', 'latin-ext'],
});

export const metadata = {
title: 'BeeQuant Platform',
Expand All @@ -11,7 +22,7 @@ export const metadata = {

export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en">
<html lang="en" className={`${roboto.className} ${poppins.className}`}>
<head>
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<link rel="stylesheet" href="https://cdn.linearicons.com/free/1.0.0/icon-font.min.css" />
Expand Down