-
Notifications
You must be signed in to change notification settings - Fork 772
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Petar Cvitanović
committed
Dec 4, 2023
1 parent
7a1f4a8
commit ff0791b
Showing
5 changed files
with
118 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
import React from 'react'; | ||
import clsx from 'clsx'; | ||
import styles from './styles.module.css'; | ||
|
||
import {Col, Divider, Row} from "antd"; | ||
import Link from '@docusaurus/Link'; | ||
import Title from "antd/es/typography/Title"; | ||
|
||
import nuqleus from '/static/img/nuqleus_landscape.png'; | ||
import frc from '/static/img/frc.png'; | ||
import esif from '/static/img/esif.png'; | ||
import zicer from '/static/img/zicer.png'; | ||
|
||
function Feature({svg, title, description}) { | ||
return ( | ||
<div className={clsx('col col--4')}> | ||
<div className="text--center"> | ||
<img width={100} src={svg} /> | ||
</div> | ||
<div className="text--center padding-horiz--md"> | ||
<h3>{title}</h3> | ||
<p>{description}</p> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default function Support() { | ||
return ( | ||
<div> | ||
<Divider orientation={"center"}> | ||
<Title level={3}> | ||
Supported by | ||
</Title> | ||
</Divider> | ||
<div className={styles.container}> | ||
<div className={styles.nuqleus}> | ||
<Link to="https://nuqleus.io/"> | ||
<img src={nuqleus}/> | ||
</Link> | ||
</div> | ||
<div className={styles.support}> | ||
<Link to="https://www.zicer.hr/?lang=en"> | ||
<img src={zicer}/> | ||
</Link> | ||
</div> | ||
<div className={styles.support}> | ||
<Link to="https://filrougecapital.com/"> | ||
<img src={frc}/> | ||
</Link> | ||
</div> | ||
<div className={styles.esif}> | ||
<img src={esif}/> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
.support { | ||
display: flex; | ||
margin: 3%; | ||
float: left; | ||
width: 11%; | ||
transform: translateY(-50%); | ||
} | ||
|
||
.nuqleus { | ||
display: flex; | ||
margin: 3% 3% 3% 19%; | ||
float: left; | ||
width: 11%; | ||
transform: translateY(-50%); | ||
} | ||
|
||
.esif { | ||
display: flex; | ||
float: left; | ||
transform: translateY(-50%); | ||
width: 20%; | ||
margin: 3% 3% 3% 3%; | ||
} | ||
|
||
@media screen and (max-width: 950px) { | ||
.container { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
} | ||
|
||
.support { | ||
width: 50%; | ||
display: flex; | ||
justify-content: center; | ||
margin-bottom: 10px; | ||
transform: translateY(0%); | ||
} | ||
|
||
.nuqleus { | ||
width: 50%; | ||
display: flex; | ||
justify-content: center; | ||
margin: 0px 0px 10px 0px; | ||
transform: translateY(0%); | ||
} | ||
|
||
.esif { | ||
width: 90%; | ||
/*margin: 2%;*/ | ||
display: flex; | ||
justify-content: center; | ||
transform: translateY(0%); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.