@@ -46,26 +46,29 @@ const App: NextPage<AppProps> = ({ Component, pageProps, router }) => (
4646
4747 < ToastContainer align = "right" />
4848
49- < AuthProvider >
50- < Nav
51- items = { [
52- { name : "Home" , path : "/" , exact : true } ,
53- { name : "FAQ" , path : "/faq" } ,
54- { name : "Forums" , path : "https://forum.open.mp" } ,
55- { name : "Servers" , path : "/servers" } ,
56- { name : "Partners" , path : "/partners" } ,
57- { name : "Docs" , path : "/docs" } ,
58- { name : "Blog" , path : "/blog" } ,
59- ] }
60- route = { router . asPath }
61- />
49+ { /*
50+ Disable AuthProvider, we aint authing ANYONE here :peetah:
51+ <AuthProvider>
52+ */ }
53+ < Nav
54+ items = { [
55+ { name : "Home" , path : "/" , exact : true } ,
56+ { name : "FAQ" , path : "/faq" } ,
57+ { name : "Forums" , path : "https://forum.open.mp" } ,
58+ { name : "Servers" , path : "/servers" } ,
59+ { name : "Partners" , path : "/partners" } ,
60+ { name : "Docs" , path : "/docs" } ,
61+ { name : "Blog" , path : "/blog" } ,
62+ ] }
63+ route = { router . asPath }
64+ />
6265
63- < main >
64- < Component { ...pageProps } />
65- </ main >
66+ < main >
67+ < Component { ...pageProps } />
68+ </ main >
6669
67- < Footer />
68- </ AuthProvider >
70+ < Footer />
71+ { /* </AuthProvider> */ }
6972
7073 < style jsx global > { `
7174 html,
0 commit comments