Add bilingual i18n UI and lighten component shadows

This commit is contained in:
Bernard Ngandu
2025-10-10 10:30:28 +02:00
parent 8f4b954af8
commit 0422becdd0
20 changed files with 622 additions and 141 deletions
+5 -1
View File
@@ -1,12 +1,16 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import { I18nextProvider } from 'react-i18next'
import 'leaflet/dist/leaflet.css'
import '@/index.css'
import App from '@/App.tsx'
import { i18n } from '@/lib/i18n'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
<I18nextProvider i18n={i18n}>
<App />
</I18nextProvider>
</StrictMode>,
)