first commit

This commit is contained in:
kicap1992
2022-07-02 20:40:27 +08:00
commit 028de97cdb
23 changed files with 7621 additions and 0 deletions

15
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