From 9cc4658f3dca5aa514d24a0c8c1df31bbc429f0e Mon Sep 17 00:00:00 2001 From: Hristo Nedelkov Date: Mon, 13 Nov 2023 23:23:17 +0200 Subject: [PATCH] Create SupportCard.tsx --- src/pages/LogsPage/SupportCard.tsx | 55 ++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 src/pages/LogsPage/SupportCard.tsx diff --git a/src/pages/LogsPage/SupportCard.tsx b/src/pages/LogsPage/SupportCard.tsx new file mode 100644 index 00000000..93128e37 --- /dev/null +++ b/src/pages/LogsPage/SupportCard.tsx @@ -0,0 +1,55 @@ +import { Text } from '@status-im/components' +import { Separator, XStack, YStack } from 'tamagui' +import IconText from '../../components/General/IconText' +import Icon from '../../components/General/Icon' +import DashboardCardWrapper from '../Dashboard/DashboardCardWrapper' + +const SupportCard = () => { + return ( + + + + + + + Get Support + + + {'>'} + + + + + Nimbus + + + + + + + + } weight={'semibold'}> + {'Join Community'} + + + + + ) +} + +export default SupportCard