import { BaseBox, Grid, StackCustom, TextCustom, ViewWrapper, } from "@/components"; import { MainColor } from "@/constants/color-palet"; import { ICON_SIZE_SMALL } from "@/constants/constans-value"; import { Feather } from "@expo/vector-icons"; import { Image } from "expo-image"; export default function Crowdfunding() { const listPage = [ { title: "Investasi", desc: "Buat investasi dan jual beli saham lebih mudah dengan pengguna lain.", path: "investment/(tabs)", }, { title: "Donasi", desc: "Berbagi info untuk berdonasi lebih luas dan lebih efisien.", path: "donation/(tabs)", }, ]; return ( {listPage.map((item, index) => ( {item.title} {item.desc} ))} ); }