From a4797bb5dbb51f4f68cba0023d6b35f47d9d63c3 Mon Sep 17 00:00:00 2001 From: marcelines Date: Wed, 7 Jun 2023 14:42:52 +0100 Subject: [PATCH] fix: repos cards --- apps/website/src/pages/insights/repos.tsx | 85 ++++++++++++++++------- 1 file changed, 61 insertions(+), 24 deletions(-) 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 + +
+
+ +
))}