-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates to Get BZZ & Added Fellowships page (#141)
* Fellowships, Get BZZ Update * Removed note * Move CTA to content CTA * Content update * Text centering
- Loading branch information
1 parent
5ea7746
commit d2b8d0c
Showing
28 changed files
with
906 additions
and
413 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
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,45 @@ | ||
import * as React from "react"; | ||
import Icons from "@/icons/components/index"; | ||
import { cx } from "utils"; | ||
|
||
type Props = {}; | ||
|
||
const items = [ | ||
{ | ||
label: "Gnosis", | ||
url: "https://bridge.gnosischain.com/", | ||
icon: Icons.GnosisIcon, | ||
}, | ||
{ | ||
label: "Juniper", | ||
url: "https://jumper.exchange/exchange?fromChain=1&fromToken=0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48&toChain=100&toToken=0xdBF3Ea6F5beE45c02255B2c26a16F300502F68da", | ||
icon: Icons.JuniperIcon, | ||
}, | ||
]; | ||
|
||
const FeatureBridges: React.FC<Props> = () => { | ||
return ( | ||
<div className="grid grid-cols-2 gap-5 mt-10 xl:grid-cols-3"> | ||
{items.map(({ label, url, icon }, index) => { | ||
const IconTag: any = icon ?? false; | ||
return ( | ||
<a | ||
key={index} | ||
href={url} | ||
target="_blank" | ||
rel="noreferrer" | ||
className={cx( | ||
"flex flex-col text-center items-center border border-[#2D3843] rounded-xl overflow-hidden bg-[#1F2831]/70 px-4 py-5 text-sm sm:text-[17px] font-bold duration-200 group" | ||
)} | ||
> | ||
<IconTag className="flex-shrink-0 w-6 max-h-6" /> | ||
|
||
<span className="mt-4">{label}</span> | ||
</a> | ||
); | ||
})} | ||
</div> | ||
); | ||
}; | ||
|
||
export default FeatureBridges; |
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
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
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,74 @@ | ||
--- | ||
meta: | ||
title: Fellowships | ||
sections: | ||
- type: Section | ||
data: | ||
hero: | ||
title: Swarm Fellowships | ||
id: impact | ||
content: >- | ||
“To be a Swarm fellow is to be a bird in the high canopy of the rainforest.” Anonymous, 2022 | ||
ctas: | ||
- title: Apply -> | ||
href: "http://my.ethswarm.org/fellowships" | ||
arrow: true | ||
background: orange | ||
type: default | ||
back: false | ||
template: cta | ||
background: | ||
src: /assets/hero/transparent.png | ||
alt: "" | ||
position: "" | ||
footnote: "" | ||
items: | ||
- tagline: "" | ||
title: Purpose of Fellowships | ||
content: >- | ||
Swarm fellows work on items identified as needs for the Swarm network to evolve and grow, but not part of core Swarm development. Fellows are expected to pursue the goals supported by the fellowship in the long term as part of their path. A fellowship helps them achieve results to a certain degree, but afterwards, the project should be possible to sustain and continue on its own. | ||
For example, fellows might develop an important product that is based on using the Swarm network and extends its usage. They support the network as well as promote its usage both directly and through the use of their product. They are ambassadors of Swarm. | ||
Fellowships could fall under categories such as: | ||
- a decentralised protocol tackling a concrete issue or challenge (e.g communication, personal data management, supply chain, etc.), | ||
- tooling for developers, | ||
- tools or applications for end users, | ||
- developing tech infrastructure supporting the Swarm network, | ||
- and others. | ||
The work must be available as open source, for others to leverage and reuse. | ||
image: "" | ||
features: | ||
columns: "" | ||
type: default | ||
features: [] | ||
contentCtas: | ||
- title: Apply -> | ||
href: "http://my.ethswarm.org/fellowships" | ||
arrow: true | ||
background: orange | ||
type: default | ||
back: false | ||
template: cta | ||
code: "" | ||
template: section-item | ||
- tagline: "" | ||
title: Active Fellowships | ||
content: >- | ||
- Data availability | ||
- Data provenance | ||
- Video & Metaverse | ||
image: "" | ||
features: | ||
columns: "" | ||
type: default | ||
features: [] | ||
ctas: [] | ||
code: "" | ||
template: section-item | ||
disclaimer: false | ||
template: section | ||
--- |
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
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
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,3 @@ | ||
import * as React from 'react'; | ||
declare function GnosisIcon(props: React.ComponentProps<'svg'>): JSX.Element; | ||
export default GnosisIcon; |
Large diffs are not rendered by default.
Oops, something went wrong.
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,3 @@ | ||
import * as React from 'react'; | ||
declare function JuniperIcon(props: React.ComponentProps<'svg'>): JSX.Element; | ||
export default JuniperIcon; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,3 @@ | ||
import * as React from 'react'; | ||
declare function SushiSwapIcon(props: React.ComponentProps<'svg'>): JSX.Element; | ||
export default SushiSwapIcon; |
Oops, something went wrong.