Skip to content

Commit

Permalink
Merge pull request #42 from WatchItDev/feat/section/statistics
Browse files Browse the repository at this point in the history
feat: added statistics dashboard to roadmap
  • Loading branch information
geolffreym authored Apr 30, 2024
2 parents 27f4450 + 1be91ac commit 0d32cb6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 5 additions & 1 deletion src/config/roadmap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const RoadMapSections: RoadmapSection[] = [
done: false
},
{
name: 'LANDING_ROADMAP_NFT_CONTRACT',
name: 'LANDING_ROADMAP_DRM_CONTRACT',
done: false
}
]
Expand All @@ -69,6 +69,10 @@ export const RoadMapSections: RoadmapSection[] = [
{
name: 'LANDING_ROADMAP_DISTRIBUTION_NODE',
done: false
},
{
name: 'LANDING_ROADMAP_STATISTICS_DASHBOARD',
done: false
}
]
},
Expand Down
1 change: 1 addition & 0 deletions src/i18n/langs/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
"LANDING_ROADMAP_DRM_CONTRACT": "DRM Contract",
"LANDING_ROADMAP_BLOCKBUSTER": "0xBlockbuster Rental Market (Proposal)",
"LANDING_ROADMAP_DISTRIBUTION_NODE": "Beta Streaming Node",
"LANDING_ROADMAP_STATISTICS_DASHBOARD": "Statistics dashboard",
"LANDING_ROADMAP_GOVERNANCE_TOKEN": "Governance Token",
"LANDING_ROADMAP_WVC": "WatchIT Video Coin (WVC Token Economics & DAO)",
"LANDING_ROADMAP_BETA_MARKETPLACE": "Marketplace Testnet Beta release",
Expand Down
1 change: 1 addition & 0 deletions src/i18n/langs/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
"LANDING_ROADMAP_DRM_CONTRACT": "Contrato DRM",
"LANDING_ROADMAP_BLOCKBUSTER": "Propuesta 0xBlockbuster Mercado de Renta",
"LANDING_ROADMAP_DISTRIBUTION_NODE": "Beta Nodo de streaming",
"LANDING_ROADMAP_STATISTICS_DASHBOARD": "Panel de estadísticas",
"LANDING_ROADMAP_GOVERNANCE_TOKEN": "Governance Token",
"LANDING_ROADMAP_WVC": "WatchIT Video Coin (WVC Token Economics & DAO)",
"LANDING_ROADMAP_BETA_MARKETPLACE": "Marketplace Testnet Beta release",
Expand Down
8 changes: 4 additions & 4 deletions src/pages/Landing/LandingView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ export const LandingView: FC = (props): JSX.Element => {
<LandingSection sx={Background1Sx}>
<LandingDistribution />
</LandingSection>
<LandingSection sx={Background2Sx}>
<LandingCoin />
</LandingSection>
<LandingSection sx={Background2Sx}>
<LandingStatistics />
</LandingSection>
<LandingSection sx={Background3Sx}>
<LandingStatistics />
<LandingCoin />
</LandingSection>
<LandingSection sx={Background1Sx}>
<LandingRoadmap />
Expand Down

0 comments on commit 0d32cb6

Please sign in to comment.