Skip to content

Commit

Permalink
chore: add riff partner
Browse files Browse the repository at this point in the history
  • Loading branch information
geolffreym committed May 28, 2023
1 parent f74fa0e commit 879b5e9
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 78 deletions.
30 changes: 3 additions & 27 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

59 changes: 13 additions & 46 deletions src/config/roadmap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,31 +8,28 @@ export interface RoadmapSection {

export const RoadMapSections: RoadmapSection[] = [
{
title: '2022 Q3',
title: '2023 Q3',
color: '#5EC363',
items: [
{
name: 'LANDING_ROADMAP_WEBSITE',
done: true
},
{
name: 'LANDING_ROADMAP_TOOLKIT',
done: false
},
{
name: 'LANDING_ROADMAP_DESKTOP_DESIGN',
done: false
},
{
name: 'LANDING_ROADMAP_MOBILE_TV_DESIGN',
done: false
},
done: true
}

]
},
{
title: '2022 Q4',
title: '2024 Q1',
color: '#47BC9F',
items: [
{
name: 'LANDING_ROADMAP_MOBILE_TV_DESIGN',
done: false
},
{
name: 'LANDING_ROADMAP_ALPHA_WEB_APP',
done: false
Expand All @@ -44,7 +41,7 @@ export const RoadMapSections: RoadmapSection[] = [
]
},
{
title: '2023 Q1',
title: '2024 Q2',
color: '#1E91CF',
items: [
{
Expand All @@ -58,17 +55,9 @@ export const RoadMapSections: RoadmapSection[] = [
]
},
{
title: '2023 Q2',
title: '2024 Q3',
color: '#8B58C6',
items: [
{
name: 'LANDING_ROADMAP_ONE_CLICK_DEPLOY',
done: false
},
{
name: 'LANDING_ROADMAP_ALPHA_WORKER_NODE',
done: false
},
{
name: 'LANDING_ROADMAP_DISTRIBUTION_CONTRACT',
done: false
Expand All @@ -80,7 +69,7 @@ export const RoadMapSections: RoadmapSection[] = [
]
},
{
title: '2023 Q3',
title: '2024 Q4',
color: '#FE9900',
items: [
{
Expand All @@ -94,33 +83,11 @@ export const RoadMapSections: RoadmapSection[] = [
{
name: 'LANDING_ROADMAP_BETA_MARKETPLACE',
done: false
},
{
name: 'LANDING_ROADMAP_BETA_TOOLKIT',
done: false
}
]
},
{
title: '2023 Q4',
color: '#FB7422',
items: [
{
name: 'LANDING_ROADMAP_BETA_WORKER_NODE',
done: false
},
{
name: 'LANDING_ROADMAP_ORACLE',
done: false
},
{
name: 'LANDING_ROADMAP_BITSWAP',
done: false
}
]
},
{
title: '2024 +',
title: '2025 +',
color: '#BF1461',
items: [
{
Expand Down
16 changes: 11 additions & 5 deletions src/pages/Landing/components/LandingPartners.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ import { Grid, Typography, Container, Box, styled, ButtonProps, Button, useTheme

// PROJECT IMPORTS
import LandingInfo from '@pages/Landing/components/LandingInfo'
import zorrillos from '@assets/img/zorrillos_dev_logo.png'
import zorrillosDark from '@assets/img/zorrillos_dev_logo_dark.png'
import synapse from '@assets/img/synapse-logo.png'
import synapseDark from '@assets/img/synapse-logo.png'
import riff from '@assets/img/riff.png'
import { Translation } from '@src/i18n'
import LandingBackgroundTriangles from '@assets/img/triangles.png'
import { AnimationOnScroll } from 'react-animation-on-scroll'
Expand Down Expand Up @@ -36,12 +37,17 @@ const LandingPartners: FC = (): JSX.Element => {
</Grid>
<Grid item xs={12}>
<Grid container spacing={6} alignItems='center' justifyContent='center'>
<Grid item xs={12} md={6} zIndex={10} display='flex' justifyContent='center' alignItems='center'>
<Grid item xs={12} md={4} zIndex={10} display='flex' justifyContent='center' alignItems='center'>
<AnimationOnScroll animateIn='animate__bounceIn' animateOut='animate__fadeOut'>
<LandingPartnerImage component='img' src={Object.is(theme.palette.mode, 'light') ? zorrillos : zorrillosDark} />
<LandingPartnerImage component='img' src={Object.is(theme.palette.mode, 'light') ? synapse : synapseDark} />
</AnimationOnScroll>
</Grid>
<Grid item xs={12} md={6} zIndex={10} display='flex' justifyContent='center' alignItems='center'>
<Grid item xs={12} md={4} zIndex={10} display='flex' justifyContent='center' alignItems='center'>
<AnimationOnScroll animateIn='animate__bounceIn' animateOut='animate__fadeOut'>
<LandingPartnerImage component='img' src={riff} />
</AnimationOnScroll>
</Grid>
<Grid item xs={12} md={4} zIndex={10} display='flex' justifyContent='center' alignItems='center'>
<AnimationOnScroll
animateIn='animate__bounceIn' animateOut='animate__fadeOut'
style={{ width: '100%', display: 'flex', alignItems: 'center', justifyContent: 'center' }}
Expand Down

0 comments on commit 879b5e9

Please sign in to comment.