Skip to content

Commit

Permalink
add grow app (#2823)
Browse files Browse the repository at this point in the history
  • Loading branch information
wow-sven authored Oct 27, 2024
1 parent 2c15ab0 commit 40df9ba
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions infra/rooch-portal-v2/src/layouts/config-nav-dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,6 @@ export const navData = [
icon: <Iconify icon="solar:infinity-line-duotone" />,
noAddressRequired: true,
},
],
].filter((item) => !(isMainNetwork() && item.title === 'Apps')),
},
].filter((item) => !(isMainNetwork() && item.subheader === 'Tokens'));
].filter((item) => !(isMainNetwork() && item.subheader === 'Tokens'))
13 changes: 11 additions & 2 deletions infra/rooch-portal-v2/src/sections/apps/view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,21 @@ const AppList: AppItemProps[] = [
{
id: 1,
name: 'Rooch Clicker',
description: "Join our Click Challenge! You're in for 1,000 RCC!",
description: "Join our Click Challenge!",
logoUrl: `${CONFIG.site.basePath}/logo/logo-single.svg`,
profileUrl: `${CONFIG.site.basePath}/assets/apps/clicker-app.jpg`,
profileUrl: `${CONFIG.site.basePath}/assets/apps/clicker-app.png`,
type: 'Demo',
url: 'https://clicker.rooch.io',
},
{
id: 2,
name: 'Grow Bitcoin',
description: "Backing Ideas with Bitcoin Staking!",
logoUrl: `${CONFIG.site.basePath}/logo/logo-single.svg`,
profileUrl: `${CONFIG.site.basePath}/assets/apps/grow-app.png`,
type: 'Demo',
url: 'https://test-grow.rooch.network',
},
];

export default function AppsView() {
Expand Down

0 comments on commit 40df9ba

Please sign in to comment.