import * as React from "react"; import { Image, View, ScrollView } from "react-native"; import { Button } from "~/components/ui/button"; import { Progress } from "~/components/ui/progress"; import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, } from "~/components/ui/card"; import { Input } from "~/components/ui/input"; import { Label } from "~/components/ui/label"; import { Tabs, TabsContent, TabsList, TabsTrigger } from "~/components/ui/tabs"; import { Text } from "~/components/ui/text"; import { ArrowLeftIcon, CircleDollarSign, LucideEye, } from "lucide-react-native"; import { SafeAreaView } from "react-native-safe-area-context"; import { useTranslation } from "react-i18next"; export default function CrowdFund() { const [value, setValue] = React.useState("overview"); const { t } = useTranslation(); return ( {t("crowdfunding.tabsOverview")} {t("crowdfunding.tabsCampaign")} {t("crowdfunding.tabsFaq")} {t("crowdfunding.title")} {t("crowdfunding.description")} {t("crowdfunding.pledgedAmount")} {t("crowdfunding.pledgedOf", { target: "1,000,000" })} 1,000 {t("crowdfunding.backersCountLabel")} 32 {t("crowdfunding.daysToGoLabel")} ); }