1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 13:19:44 +02:00

chore: Add links to GitHub

Closes #1161
This commit is contained in:
Maksim Eltyshev 2025-05-31 00:10:00 +02:00
parent c0b0436851
commit 4e05b88ecf
9 changed files with 19 additions and 10 deletions

View file

@ -7,7 +7,7 @@ import isEmail from 'validator/lib/isEmail';
import React, { useCallback, useEffect, useMemo } from 'react';
import classNames from 'classnames';
import { useDispatch, useSelector } from 'react-redux';
import { useTranslation } from 'react-i18next';
import { useTranslation, Trans } from 'react-i18next';
import { Button, Divider, Form, Grid, Header, Message } from 'semantic-ui-react';
import { useDidUpdate, usePrevious, useToggle } from '../../../lib/hooks';
import { Input } from '../../../lib/custom-ui';
@ -247,7 +247,14 @@ const Content = React.memo(() => {
/>
)}
</div>
<p className={styles.formFooter}>{t('common.poweredByPlanka')}</p>
<p className={styles.formFooter}>
<Trans i18nKey="common.poweredByPlanka">
{'Powered by '}
<a href="https://github.com/plankanban/planka" target="_blank" rel="noreferrer">
PLANKA
</a>
</Trans>
</p>
</div>
</Grid.Column>
<Grid.Column

View file

@ -14,7 +14,9 @@ import styles from './AboutPane.module.scss';
const AboutPane = React.memo(() => (
<Tab.Pane attached={false} className={styles.wrapper}>
<Image centered src={logo} size="large" />
<a href="https://github.com/plankanban/planka" target="_blank" rel="noreferrer">
<Image centered src={logo} size="large" />
</a>
<div className={styles.version}>{version}</div>
</Tab.Pane>
));