diff --git a/screens/AccountScreen.tsx b/screens/AccountScreen.tsx index cb1f72d..f34e289 100644 --- a/screens/AccountScreen.tsx +++ b/screens/AccountScreen.tsx @@ -8,6 +8,8 @@ import { useCarmel } from '~/sdk' import { Tabs } from '~/elements'; import { CommunityPosts } from '~/components/posts' import { getImageUrl } from '~/utils/main'; +import Link from 'next/link'; +import { DynamicIcon } from '~/elements'; const CardAuthor = ({ author, community, communityImage, authorImage @@ -115,6 +117,22 @@ export const AccountScreen = (props: any) => { setCarmels(all) }, [carmel.data]) + const ActionsSection = () => { + if (item.type !== "product") { + return
+
+ } + + return
+ + + +
+ } + const TabBar = () => { return
{ return
-

+ +

{ item.title }

diff --git a/screens/home/MainHomeScreen.tsx b/screens/home/MainHomeScreen.tsx index 0515693..1b9149b 100644 --- a/screens/home/MainHomeScreen.tsx +++ b/screens/home/MainHomeScreen.tsx @@ -24,6 +24,7 @@ export const Container = ({ children }: any) => {

) } + export const MainHomeScreen = () => { return
@@ -39,7 +40,6 @@ export const MainHomeScreen = () => { Browse the store -
}