Spaces:
Sleeping
Sleeping
| import '../styles/globals.css'; | |
| import Head from 'next/head'; | |
| function MyApp({ Component, pageProps }) { | |
| return ( | |
| <> | |
| <Head> | |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <title>Reachy Mini - Compact Robotic Arm</title> | |
| <meta name="description" content="Reachy Mini - A compact, affordable robotic arm for education and research" /> | |
| </Head> | |
| <Component {...pageProps} /> | |
| </> | |
| ); | |
| } | |
| export default MyApp; |