Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iyanfdezz committed Apr 27, 2024
1 parent 63b3da1 commit a8ab90c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions webapp/src/pages/Ayuda/AyudaEstadisticas.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import React from 'react';
import { useTranslation } from 'react-i18next';
import Nav from '../../components/Nav/Nav';
import Footer from '../../components/Footer/Footer';

const AyudaEstadisticas = () => {

Expand All @@ -12,6 +15,7 @@ const AyudaEstadisticas = () => {
</p>
<Heading as="h2">{t('pages.helpSats.title2')}</Heading>
<p>{t('pages.helpStats.description2')}</p>
<Footer />
</>
);
};
Expand Down
4 changes: 4 additions & 0 deletions webapp/src/pages/Ayuda/AyudaJuego.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import React from 'react';
import { useTranslation } from 'react-i18next';
import Nav from '../../components/Nav/Nav';
import Footer from '../../components/Footer/Footer';

const AyudaModosJuego = () => {

Expand All @@ -16,6 +19,7 @@ const AyudaModosJuego = () => {
<p>{t('pages.helpGame.sabiosDescription')}</p>
<Heading as="h4" size="md">{t('pages.helpGame.calculator')}</Heading>
<p>{t('pages.helpGame.calculatorDescription')}</p>
<Footer />
</>
);
};
Expand Down
4 changes: 4 additions & 0 deletions webapp/src/pages/Ayuda/AyudaSocial.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import React from 'react';
import { useTranslation } from 'react-i18next';
import Nav from '../../components/Nav/Nav';
import Footer from '../../components/Footer/Footer';

const AyudaSocial = () => {

Expand All @@ -14,6 +17,7 @@ const AyudaSocial = () => {
<p>{t('pages.helpSocial.description2')}</p>
<Heading as="h3" size="md">{t('pages.helpSocial.groups')}</Heading>
<p>{t('pages.helpSocial.description3')}</p>
<Footer/>
</>
);
};
Expand Down

0 comments on commit a8ab90c

Please sign in to comment.