first commit

This commit is contained in:
kicap1992
2022-04-03 02:36:18 +08:00
commit 03f5abf96b
37 changed files with 10380 additions and 0 deletions

15
frontend/pages/_app.js Normal file
View File

@ -0,0 +1,15 @@
import Layout from '../components/layout/Layout'
import '../styles/globals.css'
import NextNProgress from "nextjs-progressbar";
function MyApp({ Component, pageProps }) {
return (
<>
<NextNProgress />
<Layout><Component {...pageProps} /></Layout>
</>
);
}
export default MyApp