From abdbc3b3e4d2a781c0de40ae1919c0fab873af9d Mon Sep 17 00:00:00 2001 From: FredericNumericite Date: Wed, 10 Jan 2024 12:27:10 +0100 Subject: [PATCH] fix: remove old code and update readme --- README.md | 2 +- tumeplay-vitrine/pages/index.tsx | 50 -------------------------------- 2 files changed, 1 insertion(+), 51 deletions(-) diff --git a/README.md b/README.md index 9cc71521..c266175e 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ yarn start Développer une application visant à augmenter les connaissances et compétences des jeunes en matière de santé sexuelle. Contient des informations sur la sexualité, des quizzs et possibilité de commander des kits. -Créer un fichier .env avec les informations du .env.example du repo +Créer un fichier .env et un fichier .env.example. Récupérer les informations des fichiers env du dossier environnements. ```bash npm start diff --git a/tumeplay-vitrine/pages/index.tsx b/tumeplay-vitrine/pages/index.tsx index d125a846..8c3216b4 100644 --- a/tumeplay-vitrine/pages/index.tsx +++ b/tumeplay-vitrine/pages/index.tsx @@ -237,54 +237,4 @@ const Home = () => { ); }; -export async function getServerSideProps() { - const NEXT_PUBLIC_STRAPI_URL = process.env.NEXT_PUBLIC_STRAPI_URL as string; - let response = await axios.get(`${NEXT_PUBLIC_STRAPI_URL}/contents`, { - params: { - _start: 0, - _limit: 15, - title_mobile_null: false, - thematique_mobile_null: false, - }, - }); - const posts = (response.data || []).map((c: Post) => ({ - ...c, - image: { - ...c.image, - url: NEXT_PUBLIC_STRAPI_URL + c.image?.formats?.thumbnail?.url, - }, - thematique_mobile: { - ...c.thematique_mobile, - image: { - ...c.thematique_mobile.image, - url: NEXT_PUBLIC_STRAPI_URL + c.thematique_mobile.image.url, - }, - }, - etiquette: { - ...c.etiquette, - image: { - ...c.etiquette?.image, - url: - NEXT_PUBLIC_STRAPI_URL + c.etiquette?.image.formats?.thumbnail?.url, - }, - }, - })); - - response = await axios.get(`${NEXT_PUBLIC_STRAPI_URL}/thematique-mobiles`, { - params: { - _start: 0, - _limit: 100, - }, - }); - const themes = (response.data || []).map((t: Theme) => ({ - ...t, - image: { - ...t.image, - url: NEXT_PUBLIC_STRAPI_URL + t.image?.url, - }, - })); - - return { props: {} }; -} - export default Home;