diff --git a/src/components/content_sections/Csi.js b/src/components/content_sections/Csi.js index ea46903..b73c5eb 100644 --- a/src/components/content_sections/Csi.js +++ b/src/components/content_sections/Csi.js @@ -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 ( - -

- Artificial Intelligence Centre (CSI) -

- - Gonito.net belongs to the -  Artificial Intelligence Centre (CSI)  - 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. - - - CSI also cooperates with business entities in creating new solutions to be implemented in - enterprises. - -
- ); - }; - - const desktopRender = () => { - return ( - - -

- Artificial Intelligence Centre (CSI) -

- - Gonito.net belongs to the -  Artificial Intelligence Centre (CSI)  - 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. - - - CSI also cooperates with business entities in creating new solutions to be implemented in - enterprises. - -
- -
- ); - }; - + const mobileRender = () => { return ( - <> - - {mobileRender()} - - - {desktopRender()} - - + +

+ Center for Artificial Intelligence (C4AI) +

+ + + Gonito.net + {' '} + belongs to the + +  Center for Artificial Intelligence (C4AI)  + + 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. + + + C4AI also cooperates with business entities in creating new solutions + to be implemented in enterprises. + +
); + }; + + const desktopRender = () => { + return ( + + +

+ Center for Artificial Intelligence (C4AI) +

+ + + Gonito.net + {' '} + belongs to the + +  Center for Artificial Intelligence (C4AI)  + + 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. + + + C4AI also cooperates with business entities in creating new + solutions to be implemented in enterprises. + +
+ +
+ ); + }; + + return ( + <> + {mobileRender()} + {desktopRender()} + + ); }; -export default Csi; \ No newline at end of file +export default Csi;