Website/pages/_app.js

10 lines
320 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>
2021-11-01 11:36:45 +00:00
<Component {...pageProps} />
2021-12-21 19:08:36 +00:00
<BottomBar />
2021-11-01 11:36:45 +00:00
</>
}