first commit

This commit is contained in:
AnuragJangid18 2026-03-30 17:24:23 +05:30
commit 44995cb5db
60 changed files with 5472 additions and 0 deletions

13
src/main.jsx Normal file
View file

@ -0,0 +1,13 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import { GoogleOAuthProvider } from '@react-oauth/google'
import './index.css'
import App from './App.jsx'
createRoot(document.getElementById('root')).render(
<StrictMode>
<GoogleOAuthProvider clientId="725335319736-kglnmjhjppb3563vh9tpj22u5crao0a8.apps.googleusercontent.com">
<App />
</GoogleOAuthProvider>
</StrictMode>,
)