Website/pages/_app.js

18 lines
1 KiB
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"/>
2022-04-11 19:31:09 +00:00
{/* Make an embed for Discord using the meta tag so people can see a nice colorful embed message instead of just a link */}
<meta name="theme-color" content="#913ffc"/>
<meta name="og:description" content="TheRed.SH is a website of, for, and by TheRed! I'm a full-stack developer, specializing in web and app development. Further info about me goes here!"/>
2022-04-11 19:36:59 +00:00
<meta name="og:image" content="https://thered.sh/mario.png"/>
2022-04-11 19:31:09 +00:00
<meta name="og:title" content="TheRed.SH"/>
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
</>
}