From 64ccace6b63ca1ab1e8963eed4e5ebd13d6a78af Mon Sep 17 00:00:00 2001 From: Hailey Date: Mon, 3 Jun 2024 09:25:59 -0700 Subject: [PATCH] add link wrapper --- .../StarterPack/StarterPackCard.tsx | 41 ++++++++++--------- 1 file changed, 22 insertions(+), 19 deletions(-) diff --git a/src/components/StarterPack/StarterPackCard.tsx b/src/components/StarterPack/StarterPackCard.tsx index 46e1753f62..34f525e6c3 100644 --- a/src/components/StarterPack/StarterPackCard.tsx +++ b/src/components/StarterPack/StarterPackCard.tsx @@ -3,33 +3,36 @@ import {View} from 'react-native' import {atoms as a, useTheme} from '#/alf' import {StarterPackIcon} from '#/components/icons/StarterPackIcon' +import {Link} from '#/components/Link' import {Text} from '#/components/Typography' export function StarterPackCard({hideTopBorder}: {hideTopBorder?: boolean}) { const t = useTheme() return ( - - - - - Science - - Starter pack by @bossett.social + + + + + + Science + + Starter pack by @bossett.social + + + + 380 users have joined! - - 380 users have joined! - - + ) }