Spaces:
Build error
Build error
Upload pages/_app.jsx with huggingface_hub
Browse files- pages/_app.jsx +17 -0
pages/_app.jsx
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 |
+
<div className="min-h-screen flex flex-col">
|
| 8 |
+
<Header />
|
| 9 |
+
<main className="flex-grow">
|
| 10 |
+
<Component {...pageProps} />
|
| 11 |
+
</main>
|
| 12 |
+
<Footer />
|
| 13 |
+
</div>
|
| 14 |
+
);
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
+
export default MyApp;
|