added things

This commit is contained in:
LucasLassiter
2022-05-03 22:00:45 -07:00
parent 455ab524fa
commit fb28b8380d
10 changed files with 620 additions and 1064 deletions

View File

@@ -1,8 +1,15 @@
import '../styles/globals.css'
import Navbar from '../components/Navbar';
import { Toaster } from 'react-hot-toast';
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
return (
<>
<Navbar />
<Component {...pageProps} />
<Toaster />
</>
);
}
export default MyApp