diff --git a/public/assets/translations/en.json b/public/assets/translations/en.json index 66134637aeaaf93a0efcf9d266388dc4ad8393fa..e961f272882636f1f22d090a84744d0195aa50aa 100644 --- a/public/assets/translations/en.json +++ b/public/assets/translations/en.json @@ -2,7 +2,7 @@ "Simplicité": "Simplicity", "Légèreté": "Lightness", "Écologie": "Ecology", - "kuadrado-home-description": "Based in Vernoux en Vivarais in the Ardèche, Kuadrado Software is a micro-enterprise created in 2021 by Pierre Jarriges.<br />Kuadrado Software develops IT projects with a focus on maximum quality and minimalism.<br /><br />Video game | Web | Software | Research projects | Digital pedagogy<br /><br />All projects are based on a free and open-source approach.", + "kuadrado-home-description": "Based in Vernoux en Vivarais in the Ardèche, Kuadrado Software is a micro-enterprise created in 2021.<br />Kuadrado Software develops IT projects with a focus on maximum quality and minimalism.<br /><br />Video game | Web | Software | Research projects | Digital pedagogy<br /><br />All projects are based on a free and open-source approach.", "Site en construction ...": "Website in construction...", "Sur les réseaux": "On the networks", "kuadrado-footer-copyleft": "All images on this website were made by me and may be reused for personal usage.", diff --git a/public/assets/translations/fr.json b/public/assets/translations/fr.json index 3cd3fb770244f267d8029bc35115743e6072e8f5..a2b977ae337f955699c3b963ed813649e2a43064 100644 --- a/public/assets/translations/fr.json +++ b/public/assets/translations/fr.json @@ -1,5 +1,5 @@ { - "kuadrado-home-description": "Basée en Ardèche à Vernoux en Vivarais, Kuadrado Software est une micro-entreprise créée en 2021 par Pierre Jarriges.<br />Kuadrado Software développe des projets informatique dans une démarche d'exigence de qualité maximum et de minimalisme.<br /><br />Jeu vidéo  |  Web  |  Logiciel  |  projets de recherche  |  Pédagogie numérique<br /><br />Tous les projets sont basés sur une approche libre et open-source.", + "kuadrado-home-description": "Basée en Ardèche à Vernoux en Vivarais, Kuadrado Software est une micro-entreprise créée en 2021.<br />Kuadrado Software développe des projets informatique dans une démarche d'exigence de qualité maximum et de minimalisme.<br /><br />Jeu vidéo  |  Web  |  Logiciel  |  projets de recherche  |  Pédagogie numérique<br /><br />Tous les projets sont basés sur une approche libre et open-source.", "kuadrado-footer-copyleft": "Toutes les images du site ont été réalisées par mes soins et peuvent être réutilisées pour un usage personnel.", "games-description": "Créations vidéoludiques, jeux web et jeux PC, projets en cours.", "education-description": "S'approprier la technologie par le partage de connaissances.", diff --git a/website/src/homepage.js b/website/src/homepage.js index 93353fb1e1f5e29c981ff22bc1e8258e12e04806..f647094de0bbb420bd23f227aa153a6ffb8a9251 100644 --- a/website/src/homepage.js +++ b/website/src/homepage.js @@ -64,12 +64,6 @@ class HomePage extends WebPage { description: t("games-description"), }, - { - title: t("Pédagogie"), - img: images_url + "/brain.svg", - href: "/education/", - description: t("education-description"), - }, { title: "Software", img: images_url + "/meca_proc.svg", @@ -82,6 +76,12 @@ class HomePage extends WebPage { href: "/service/", description: t("service-description"), }, + { + title: t("Pédagogie"), + img: images_url + "/brain.svg", + href: "/education/", + description: t("education-description"), + }, ].map(cardProps => new ThemeCard(cardProps).render()), }, ], diff --git a/website/src/template/components/navbar.js b/website/src/template/components/navbar.js index e3fffd988cb2c36591996abd78afe5f12ec52f5d..8a0e6c9198438e4c436354e983d5f6c210c10a8d 100644 --- a/website/src/template/components/navbar.js +++ b/website/src/template/components/navbar.js @@ -4,13 +4,13 @@ const { images_url } = require("../../../constants"); const NAV_MENU_ITEMS = [ { url: "/games/", text: "Jeux" }, + + { url: "/software-development/", text: "Software" }, + { url: "/service/", text: "Service" }, { url: "/education/", text: "Pédagogie", - }, - { url: "/software-development/", text: "Software" }, - { url: "/service/", text: "Service" } - + } ]; class NavBar {