correct csi link

This commit is contained in:
mattyl006 2022-08-01 10:15:45 +02:00
parent dff86c9519
commit 4ff84194fa
2 changed files with 4 additions and 1 deletions

View File

@ -2,6 +2,7 @@ import React from 'react';
import {Container, FlexRow} from '../../utils/containers';
import styled from 'styled-components';
import {Medium} from '../../utils/fonts';
import {CSI_LINK} from '../../utils/globals';
const FooterStyle = styled(FlexRow)`
width: 100%;
@ -33,7 +34,7 @@ const Footer = () => {
<Medium as='p'>
Read more about&nbsp;
<Container as='a' display='inline' target='_blank'
href='https://wmi.amu.edu.pl/wiadomosci/wmi-w-mediach/centrum-sztucznej-inteligencji'>
href={CSI_LINK}>
CSI
</Container>
</Medium>

View File

@ -12,6 +12,7 @@ const MINI_DESCRIPTION_LENGTH = 70;
const API = 'https://gonito.net/api';
const CHALLENGES_PAGE = '/challenges';
const CHALLENGE_PAGE = '/challenge';
const CSI_LINK = 'https://csi.amu.edu.pl/';
const MINI_DESCRIPTION_RENDER = (description) => {
if (description) {
@ -65,6 +66,7 @@ export {
CHALLENGES_PAGE,
CHALLENGE_PAGE,
MINI_DESCRIPTION_LENGTH,
CSI_LINK,
MINI_DESCRIPTION_RENDER,
RENDER_ICO,
CALC_PAGES,