File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 22
33github : [x1unix]
44open_collective : bttr-go-playground
5- liberapay : x1unix
65# github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
76# patreon: # Replace with a single Patreon username
87# ko_fi: # Replace with a single Ko-fi username
Original file line number Diff line number Diff line change 11import React from 'react'
22import { mergeStyleSets , type IStackProps , Stack } from '@fluentui/react'
3- import gnolandLight from './img/gnoland-light.svg'
4- import gnolandDark from './img/gnoland-dark.svg'
3+ import gnolandLight from './img/gnoland-light.svg?url'
4+ import gnolandDark from './img/gnoland-dark.svg?url'
5+
6+ const gnolandUrl =
7+ 'https://gno.land/?utm_source=sponsor&utm_medium=goplay&utm_campaign=DevAcquisition+&utm_content=Devtool'
58
69interface Props {
710 isDark ?: boolean
@@ -24,12 +27,15 @@ const tokens: IStackProps['tokens'] = {
2427export const SponsorsBlock : React . FC < Props > = ( { isDark } ) => (
2528 < Stack horizontal tokens = { tokens } verticalAlign = "center" >
2629 < Stack . Item className = { styles . image } >
27- < a href = "https://gno.land/?from=goplay-tools" target = "_blank" rel = "noreferrer" >
30+ < a href = { gnolandUrl } target = "_blank" rel = "noreferrer" >
2831 < img src = { isDark ? gnolandDark : gnolandLight } alt = "gno.land" />
2932 </ a >
3033 </ Stack . Item >
3134 < Stack . Item className = { styles . text } >
32- gno.land, an open-source smart contract platform powered by Gno, a deterministic variant of Go.
35+ < a href = { gnolandUrl } target = "_blank" rel = "noreferrer" >
36+ gno.land
37+ </ a >
38+ , an open-source smart contract platform powered by Gno, a deterministic variant of Go.
3339 </ Stack . Item >
3440 </ Stack >
3541)
You can’t perform that action at this time.
0 commit comments