diff --git a/pages/index.js b/pages/index.js
index 79ac37b..adcc3ac 100644
--- a/pages/index.js
+++ b/pages/index.js
@@ -12,6 +12,7 @@ import Footer from '../components/footer'
import RezoDialog from '../components/rezo/rezo-dialog'
import {jwennStats} from '../lib/oki-api'
+import KatStats from '../components/stats/kat-stats'
import KatKayLa from '../components/kat-kay-la'
import Custom500 from './500'
@@ -22,6 +23,36 @@ export default function Home({errorCode, errorMessage, stats}) {
return
}
+ const {parolesWithoutTranslation} = stats
+
+ const statsByLang = [
+ {
+ code: 'fr',
+ value: parolesWithoutTranslation.francais,
+ emoji: '🇫🇷'
+ },
+ {
+ code: 'en',
+ value: parolesWithoutTranslation.anglais,
+ emoji: '🇬🇧'
+ },
+ {
+ code: 'es',
+ value: parolesWithoutTranslation.espagnol,
+ emoji: '🇪🇸'
+ },
+ {
+ code: 'de',
+ value: parolesWithoutTranslation.allemand,
+ emoji: '🇩🇪'
+ },
+ {
+ code: 'it',
+ value: parolesWithoutTranslation.italien,
+ emoji: '🇮🇹'
+ }
+ ]
+
return (
@@ -49,6 +80,11 @@ export default function Home({errorCode, errorMessage, stats}) {
+
+ {statsByLang.map(({code, value, emoji}) => (
+
+ ))}
+