Website/pages/_app.js

13 lines
578 B
JavaScript
Raw Normal View History

2021-10-24 17:04:22 +00:00
import '../styles/globals.css'
2021-11-01 11:36:45 +00:00
import Navbar from '../components/navbar'
2021-12-21 19:08:36 +00:00
import BottomBar from '../components/bottombar'
2021-11-01 11:36:45 +00:00
export default function MyApp({ Component, pageProps }) {
return <>
2021-12-21 19:08:36 +00:00
<link rel="stylesheet" href="/cdn/fontawesome/css/all.css"></link>
2022-02-17 16:17:35 +00:00
<link rel="preconnect" href="https://fonts.googleapis.com"/>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&display=swap" rel="stylesheet"/>
2021-11-01 11:36:45 +00:00
<Component {...pageProps} />
2022-02-17 16:17:35 +00:00
{/* <BottomBar /> */}
2021-11-01 11:36:45 +00:00
</>
}