Initial commit

This commit is contained in:
Lucàs
2023-03-01 11:44:20 +01:00
commit b4b00d19d3
14 changed files with 9273 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import '../styles/globals.css'
import { ChakraProvider } from '@chakra-ui/react';
function MyApp({ Component, pageProps }) {
return (
<ChakraProvider>
<Component {...pageProps} />
</ChakraProvider>
)
}
export default MyApp