Spaces:
Sleeping
Sleeping
Upload pages/_app.js with huggingface_hub
Browse files- pages/_app.js +19 -0
pages/_app.js
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import Head from 'next/head';
|
| 2 |
+
import '../styles/globals.css';
|
| 3 |
+
import Header from '../components/Header';
|
| 4 |
+
|
| 5 |
+
export default function App({ Component, pageProps }) {
|
| 6 |
+
return (
|
| 7 |
+
<>
|
| 8 |
+
<Head>
|
| 9 |
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
| 10 |
+
</Head>
|
| 11 |
+
<div className="min-h-screen bg-slate-950">
|
| 12 |
+
<Header />
|
| 13 |
+
<main className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
|
| 14 |
+
<Component {...pageProps} />
|
| 15 |
+
</main>
|
| 16 |
+
</div>
|
| 17 |
+
</>
|
| 18 |
+
);
|
| 19 |
+
}
|