diff --git a/src/pages/Dashboard/BasicInfoCard.tsx b/src/pages/Dashboard/BasicInfoCard.tsx
index b568ee87..e84cefde 100644
--- a/src/pages/Dashboard/BasicInfoCard.tsx
+++ b/src/pages/Dashboard/BasicInfoCard.tsx
@@ -1,7 +1,30 @@
-import { Stack } from 'tamagui'
+import { Text } from '@status-im/components'
+import { YStack } from 'tamagui'
+import DashboardCardWrapper from './DashboardCardWrapper'
-const BasicInfoCard = () => {
- return
+type BasicInfoCardProps = {
+ title: string
+ value: string
+}
+
+const BasicInfoCard = ({ title, value }: BasicInfoCardProps) => {
+ return (
+
+
+
+ {title}
+
+
+ {value}
+
+
+
+ )
}
export default BasicInfoCard