csi english content correction
This commit is contained in:
parent
0364f78182
commit
b77c99dba5
@ -1,70 +1,78 @@
|
||||
import React from 'react';
|
||||
import {FlexColumn, FlexRow, Svg} from '../../utils/containers';
|
||||
import {Body, H2, Medium} from '../../utils/fonts';
|
||||
import { FlexColumn, FlexRow, Svg } from '../../utils/containers';
|
||||
import { Body, H2, Medium } from '../../utils/fonts';
|
||||
import Media from 'react-media';
|
||||
import theme from '../../utils/theme';
|
||||
import uamLogo from '../../assets/uam-logo.svg';
|
||||
|
||||
const Csi = () => {
|
||||
const mobileRender = () => {
|
||||
return (
|
||||
<FlexColumn as='section' alignmentX='flex-start'>
|
||||
<H2 as='h2' margin='0 0 24px 0'>
|
||||
Artificial Intelligence Centre (CSI)
|
||||
</H2>
|
||||
<Body as='p' margin='0 0 16px 0'>
|
||||
<Medium as='span' display='inline'>Gonito.net</Medium> belongs to the
|
||||
<Medium as='span' display='inline'> Artificial Intelligence Centre (CSI) </Medium>
|
||||
at Adam Mickiewicz University (UAM) which conducts research on the development of artificial
|
||||
intelligence, carries out scientific and research and development projects, integrates the research
|
||||
of scientists from various departments of Adam Mickiewicz University and outside it - from leading
|
||||
scientific centers in Poland and abroad as well as those employed in business entities.
|
||||
</Body>
|
||||
<Medium as='p'>
|
||||
CSI also cooperates with business entities in creating new solutions to be implemented in
|
||||
enterprises.
|
||||
</Medium>
|
||||
</FlexColumn>
|
||||
);
|
||||
};
|
||||
|
||||
const desktopRender = () => {
|
||||
return (
|
||||
<FlexRow gap='46px'>
|
||||
<FlexColumn as='section' alignmentX='flex-start' maxWidth='490px'>
|
||||
<H2 as='h2' margin='0 0 48px 0'>
|
||||
Artificial Intelligence Centre (CSI)
|
||||
</H2>
|
||||
<Body as='p' margin='0 0 24px 0'>
|
||||
<Medium as='span' display='inline'>Gonito.net</Medium> belongs to the
|
||||
<Medium as='span' display='inline'> Artificial Intelligence Centre (CSI) </Medium>
|
||||
at Adam Mickiewicz University (UAM) which conducts research on the development of artificial
|
||||
intelligence, carries out scientific and research and development projects, integrates the
|
||||
research
|
||||
of scientists from various departments of Adam Mickiewicz University and outside it - from
|
||||
leading
|
||||
scientific centers in Poland and abroad as well as those employed in business entities.
|
||||
</Body>
|
||||
<Medium as='p'>
|
||||
CSI also cooperates with business entities in creating new solutions to be implemented in
|
||||
enterprises.
|
||||
</Medium>
|
||||
</FlexColumn>
|
||||
<Svg src={uamLogo} width='200px' height='242px' size='contain'/>
|
||||
</FlexRow>
|
||||
);
|
||||
};
|
||||
|
||||
const mobileRender = () => {
|
||||
return (
|
||||
<>
|
||||
<Media query={theme.mobile}>
|
||||
{mobileRender()}
|
||||
</Media>
|
||||
<Media query={theme.desktop}>
|
||||
{desktopRender()}
|
||||
</Media>
|
||||
</>
|
||||
<FlexColumn as="section" alignmentX="flex-start">
|
||||
<H2 as="h2" margin="0 0 24px 0">
|
||||
Center for Artificial Intelligence (C4AI)
|
||||
</H2>
|
||||
<Body as="p" margin="0 0 16px 0">
|
||||
<Medium as="span" display="inline">
|
||||
Gonito.net
|
||||
</Medium>{' '}
|
||||
belongs to the
|
||||
<Medium as="span" display="inline">
|
||||
Center for Artificial Intelligence (C4AI)
|
||||
</Medium>
|
||||
at Adam Mickiewicz University (UAM) which conducts research on the
|
||||
development of artificial intelligence, carries out scientific and
|
||||
research and development projects, integrates the research of
|
||||
scientists from various departments of Adam Mickiewicz University and
|
||||
outside it - from leading scientific centers in Poland and abroad as
|
||||
well as those employed in business entities.
|
||||
</Body>
|
||||
<Medium as="p">
|
||||
C4AI also cooperates with business entities in creating new solutions
|
||||
to be implemented in enterprises.
|
||||
</Medium>
|
||||
</FlexColumn>
|
||||
);
|
||||
};
|
||||
|
||||
const desktopRender = () => {
|
||||
return (
|
||||
<FlexRow gap="46px">
|
||||
<FlexColumn as="section" alignmentX="flex-start" maxWidth="490px">
|
||||
<H2 as="h2" margin="0 0 48px 0">
|
||||
Center for Artificial Intelligence (C4AI)
|
||||
</H2>
|
||||
<Body as="p" margin="0 0 24px 0">
|
||||
<Medium as="span" display="inline">
|
||||
Gonito.net
|
||||
</Medium>{' '}
|
||||
belongs to the
|
||||
<Medium as="span" display="inline">
|
||||
Center for Artificial Intelligence (C4AI)
|
||||
</Medium>
|
||||
at Adam Mickiewicz University (UAM) which conducts research on the
|
||||
development of artificial intelligence, carries out scientific and
|
||||
research and development projects, integrates the research of
|
||||
scientists from various departments of Adam Mickiewicz University
|
||||
and outside it - from leading scientific centers in Poland and
|
||||
abroad as well as those employed in business entities.
|
||||
</Body>
|
||||
<Medium as="p">
|
||||
C4AI also cooperates with business entities in creating new
|
||||
solutions to be implemented in enterprises.
|
||||
</Medium>
|
||||
</FlexColumn>
|
||||
<Svg src={uamLogo} width="200px" height="242px" size="contain" />
|
||||
</FlexRow>
|
||||
);
|
||||
};
|
||||
|
||||
return (
|
||||
<>
|
||||
<Media query={theme.mobile}>{mobileRender()}</Media>
|
||||
<Media query={theme.desktop}>{desktopRender()}</Media>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default Csi;
|
||||
export default Csi;
|
||||
|
Loading…
Reference in New Issue
Block a user