csi english content correction

This commit is contained in:
Mateusz Tylka 2023-02-28 16:09:21 +01:00
parent 0364f78182
commit b77c99dba5

View File

@ -8,21 +8,28 @@ import uamLogo from '../../assets/uam-logo.svg';
const Csi = () => { const Csi = () => {
const mobileRender = () => { const mobileRender = () => {
return ( return (
<FlexColumn as='section' alignmentX='flex-start'> <FlexColumn as="section" alignmentX="flex-start">
<H2 as='h2' margin='0 0 24px 0'> <H2 as="h2" margin="0 0 24px 0">
Artificial Intelligence Centre (CSI) Center for Artificial Intelligence (C4AI)
</H2> </H2>
<Body as='p' margin='0 0 16px 0'> <Body as="p" margin="0 0 16px 0">
<Medium as='span' display='inline'>Gonito.net</Medium> belongs to the <Medium as="span" display="inline">
<Medium as='span' display='inline'>&nbsp;Artificial Intelligence Centre (CSI)&nbsp;</Medium> Gonito.net
at Adam Mickiewicz University (UAM) which conducts research on the development of artificial </Medium>{' '}
intelligence, carries out scientific and research and development projects, integrates the research belongs to the
of scientists from various departments of Adam Mickiewicz University and outside it - from leading <Medium as="span" display="inline">
scientific centers in Poland and abroad as well as those employed in business entities. &nbsp;Center for Artificial Intelligence (C4AI)&nbsp;
</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> </Body>
<Medium as='p'> <Medium as="p">
CSI also cooperates with business entities in creating new solutions to be implemented in C4AI also cooperates with business entities in creating new solutions
enterprises. to be implemented in enterprises.
</Medium> </Medium>
</FlexColumn> </FlexColumn>
); );
@ -30,39 +37,40 @@ const Csi = () => {
const desktopRender = () => { const desktopRender = () => {
return ( return (
<FlexRow gap='46px'> <FlexRow gap="46px">
<FlexColumn as='section' alignmentX='flex-start' maxWidth='490px'> <FlexColumn as="section" alignmentX="flex-start" maxWidth="490px">
<H2 as='h2' margin='0 0 48px 0'> <H2 as="h2" margin="0 0 48px 0">
Artificial Intelligence Centre (CSI) Center for Artificial Intelligence (C4AI)
</H2> </H2>
<Body as='p' margin='0 0 24px 0'> <Body as="p" margin="0 0 24px 0">
<Medium as='span' display='inline'>Gonito.net</Medium> belongs to the <Medium as="span" display="inline">
<Medium as='span' display='inline'>&nbsp;Artificial Intelligence Centre (CSI)&nbsp;</Medium> Gonito.net
at Adam Mickiewicz University (UAM) which conducts research on the development of artificial </Medium>{' '}
intelligence, carries out scientific and research and development projects, integrates the belongs to the
research <Medium as="span" display="inline">
of scientists from various departments of Adam Mickiewicz University and outside it - from &nbsp;Center for Artificial Intelligence (C4AI)&nbsp;
leading </Medium>
scientific centers in Poland and abroad as well as those employed in business entities. 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> </Body>
<Medium as='p'> <Medium as="p">
CSI also cooperates with business entities in creating new solutions to be implemented in C4AI also cooperates with business entities in creating new
enterprises. solutions to be implemented in enterprises.
</Medium> </Medium>
</FlexColumn> </FlexColumn>
<Svg src={uamLogo} width='200px' height='242px' size='contain'/> <Svg src={uamLogo} width="200px" height="242px" size="contain" />
</FlexRow> </FlexRow>
); );
}; };
return ( return (
<> <>
<Media query={theme.mobile}> <Media query={theme.mobile}>{mobileRender()}</Media>
{mobileRender()} <Media query={theme.desktop}>{desktopRender()}</Media>
</Media>
<Media query={theme.desktop}>
{desktopRender()}
</Media>
</> </>
); );
}; };