00Boobs00's picture
Upload pages/_app.js with huggingface_hub
2f4513c verified
import Head from 'next/head';
import '../styles/globals.css';
import Header from '../components/Header';
export default function App({ Component, pageProps }) {
return (
<>
<Head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
</Head>
<div className="min-h-screen bg-slate-950">
<Header />
<main className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
<Component {...pageProps} />
</main>
</div>
</>
);
}