diff --git a/apps/website/src/pages/insights/repos.tsx b/apps/website/src/pages/insights/repos.tsx index af185535..39eb65f1 100644 --- a/apps/website/src/pages/insights/repos.tsx +++ b/apps/website/src/pages/insights/repos.tsx @@ -1,4 +1,5 @@ -import { Text } from '@status-im/components' +import { Shadow, Text } from '@status-im/components' +import { OpenIcon, UnlockedIcon } from '@status-im/icons' import { Link } from '@/components/link' import { InsightsLayout } from '@/layouts/insights-layout' @@ -30,6 +31,24 @@ const repos = [ issues: 10, stars: 5, }, + { + name: 'nim-waku', + description: 'a free (libre) open source, mobile OS for Ethereum.', + issues: 10, + stars: 5, + }, + { + name: 'go-waku', + description: 'a free (libre) open source, mobile OS for Ethereum.', + issues: 10, + stars: 5, + }, + { + name: 'js-waku', + description: 'a free (libre) open source, mobile OS for Ethereum.', + issues: 10, + stars: 5, + }, { name: 'nimbus-eth2', description: 'a free (libre) open source, mobile OS for Ethereum.', @@ -55,30 +74,48 @@ const ReposPage: Page = () => {
{repos.map(repo => ( - - - {repo.name} - - - {repo.description} - + + +
+ + {repo.name} + + + {repo.description} + +
-
- - Public - - - 42 Issues - - - 32 - -
- +
+
+
+ +
+ + Public + +
+
+
+ +
+ + 42 issues + +
+
+
+ +
+ + 32 + +
+
+ +
))}