durukan commited on
Commit
03403bb
·
verified ·
1 Parent(s): b4e7a11

Upload pages/_app.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. pages/_app.js +15 -0
pages/_app.js ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import '../styles/globals.css';
2
+ import ChatHeader from '../components/ChatHeader';
3
+
4
+ function MyApp({ Component, pageProps }) {
5
+ return (
6
+ <div className="min-h-screen flex flex-col">
7
+ <ChatHeader />
8
+ <main className="flex-1">
9
+ <Component {...pageProps} />
10
+ </main>
11
+ </div>
12
+ );
13
+ }
14
+
15
+ export default MyApp;