WebashalarForML commited on
Commit
df38ced
·
verified ·
1 Parent(s): ac917c7

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 Head from 'next/head';
3
+
4
+ export default function App({ Component, pageProps }) {
5
+ return (
6
+ <>
7
+ <Head>
8
+ <title>AI Architect | Research Portfolio</title>
9
+ <meta name="description" content="High-impact portfolio for AI Research & Engineering" />
10
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
11
+ </Head>
12
+ <Component {...pageProps} />
13
+ </>
14
+ );
15
+ }