add link to footer
This commit is contained in:
parent
e88cf16702
commit
4dcb1c4dd8
|
|
@ -3,8 +3,6 @@ import { Col, Row } from 'reactstrap';
|
|||
import { version } from '../../config';
|
||||
|
||||
const JKFooter = () => {
|
||||
|
||||
|
||||
return (
|
||||
<footer>
|
||||
<Row noGutters className="justify-content-between text-center fs--1 mt-4 mb-3">
|
||||
|
|
@ -13,9 +11,23 @@ const JKFooter = () => {
|
|||
Copyright © {new Date().getFullYear()} JamKazam, Inc. All Rights Reserved
|
||||
</p>
|
||||
</Col>
|
||||
|
||||
|
||||
<Col sm="auto">
|
||||
<p className="mb-0 text-600">v{version}</p>
|
||||
<p className="mb-0 text-600">
|
||||
{' '}
|
||||
<a href="https://www.jamkazam.com/corp/about" target="_blank">
|
||||
about
|
||||
</a>{' '}
|
||||
|{' '}
|
||||
<a href="https://www.jamkazam.com/corp/privacy" target="_blank">
|
||||
privacy
|
||||
</a>{' '}
|
||||
|{' '}
|
||||
<a href="https://www.jamkazam.com/corp/terms" target="_blank">
|
||||
terms of service
|
||||
</a>
|
||||
</p>
|
||||
{/* <p className="mb-0 text-600">v{version}</p> */}
|
||||
</Col>
|
||||
</Row>
|
||||
</footer>
|
||||
|
|
|
|||
|
|
@ -11,11 +11,11 @@ function JKLocaleSwitch() {
|
|||
}
|
||||
|
||||
return (
|
||||
<ul class="list-inline" data-testid="langSwitch">
|
||||
<li class="list-inline-item">
|
||||
<ul className="list-inline" data-testid="langSwitch">
|
||||
<li className="list-inline-item">
|
||||
<Button onClick={changeLanguage} value="en" color="link" size="sm" className={classNames('px-1 py-0', {'font-weight-semi-bold btn-outline-primary': i18n.language === 'en'})}>EN</Button>
|
||||
</li>
|
||||
<li class="list-inline-item">
|
||||
<li className="list-inline-item">
|
||||
<Button onClick={changeLanguage} value="es" color="link" size="sm" className={ classNames('px-1 py-0', {'font-weight-semi-bold btn-outline-primary': i18n.language === 'es'}) }>ES</Button>
|
||||
</li>
|
||||
</ul>
|
||||
|
|
|
|||
Loading…
Reference in New Issue