IamVicky111 commited on
Commit
91c77a9
·
verified ·
1 Parent(s): da7136e

Upload pages/_app.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. pages/_app.js +17 -0
pages/_app.js ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import '../styles/globals.css';
2
+ import Head from 'next/head';
3
+
4
+ function MyApp({ Component, pageProps }) {
5
+ return (
6
+ <>
7
+ <Head>
8
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
9
+ <title>Reachy Mini - Compact Robotic Arm</title>
10
+ <meta name="description" content="Reachy Mini - A compact, affordable robotic arm for education and research" />
11
+ </Head>
12
+ <Component {...pageProps} />
13
+ </>
14
+ );
15
+ }
16
+
17
+ export default MyApp;