first commit

This commit is contained in:
Urtzi Alfaro
2025-07-17 13:54:51 +02:00
parent 347ff51bd7
commit 5bb3e93da4
41 changed files with 10084 additions and 94 deletions

View File

@@ -0,0 +1,12 @@
import { AuthProvider } from '../api';
import '../styles/globals.css';
function App({ Component, pageProps }: any) {
return (
<AuthProvider>
<Component {...pageProps} />
</AuthProvider>
);
}
export default App;