ti1a commited on
Commit
b2252d0
·
verified ·
1 Parent(s): 0620655

Upload pages/_app.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. pages/_app.js +17 -0
pages/_app.js ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import '../styles/globals.css';
2
+ import Header from '../components/Header';
3
+ import Footer from '../components/Footer';
4
+
5
+ function MyApp({ Component, pageProps }) {
6
+ return (
7
+ <>
8
+ <Header />
9
+ <main>
10
+ <Component {...pageProps} />
11
+ </main>
12
+ <Footer />
13
+ </>
14
+ );
15
+ }
16
+
17
+ export default MyApp;