fix: added sponsored attribute

This commit is contained in:
Luca Burgio 2024-02-10 11:08:48 +01:00
parent 82a1fc0437
commit bdc17791a5
2 changed files with 6 additions and 1 deletions

View file

@ -3,7 +3,7 @@ import styled from 'styled-components';
export function Streamline() { export function Streamline() {
return ( return (
<a href="https://bit.ly/3SNgpKo" style={{ textDecoration: 'none' }}> <a rel="sponsored" href="https://bit.ly/3SNgpKo" style={{ textDecoration: 'none' }}>
<PromoContainer> <PromoContainer>
<PromoContent> <PromoContent>
<PromoInfo> <PromoInfo>

View file

@ -97,12 +97,14 @@ const Home: NextPage<HomeProps> = ({
data-tooltip="Pierre Olivier Marec" data-tooltip="Pierre Olivier Marec"
as={'a'} as={'a'}
href={'https://github.com/pomarec'} href={'https://github.com/pomarec'}
rel="sponsored"
src={'https://avatars.githubusercontent.com/u/802933?v=4'} src={'https://avatars.githubusercontent.com/u/802933?v=4'}
/> />
<Supporter <Supporter
data-tooltip="Tuan Hiep" data-tooltip="Tuan Hiep"
as={'a'} as={'a'}
href={'https://opencollective.com/iconoir/contribute'} href={'https://opencollective.com/iconoir/contribute'}
rel="sponsored"
src={ src={
'https://images.opencollective.com/tuan-hiep/17b1ef2/avatar.png?height=80' 'https://images.opencollective.com/tuan-hiep/17b1ef2/avatar.png?height=80'
} }
@ -111,6 +113,7 @@ const Home: NextPage<HomeProps> = ({
data-tooltip="Justin Kendrick" data-tooltip="Justin Kendrick"
as={'a'} as={'a'}
href={'https://opencollective.com/iconoir/contribute'} href={'https://opencollective.com/iconoir/contribute'}
rel="sponsored"
src={ src={
'https://images.opencollective.com/guest-39c79745/avatar.png?height=80' 'https://images.opencollective.com/guest-39c79745/avatar.png?height=80'
} }
@ -119,6 +122,7 @@ const Home: NextPage<HomeProps> = ({
data-tooltip="Anon" data-tooltip="Anon"
as={'a'} as={'a'}
href={'https://opencollective.com/iconoir/contribute'} href={'https://opencollective.com/iconoir/contribute'}
rel="sponsored"
src={ src={
'https://opencollective.com/static/images/default-guest-logo.svg' 'https://opencollective.com/static/images/default-guest-logo.svg'
} }
@ -127,6 +131,7 @@ const Home: NextPage<HomeProps> = ({
data-tooltip="Luca Burgio" data-tooltip="Luca Burgio"
as={'a'} as={'a'}
href={'https://twitter.com/burgioluca'} href={'https://twitter.com/burgioluca'}
rel="sponsored"
src={'https://lucaburgio.com/images/profile2.png'} src={'https://lucaburgio.com/images/profile2.png'}
/> />
</Supporters> </Supporters>