diff --git a/app/src/app/(tabs)/index.tsx b/app/src/app/(tabs)/index.tsx index abf1553..2ac1841 100644 --- a/app/src/app/(tabs)/index.tsx +++ b/app/src/app/(tabs)/index.tsx @@ -4,6 +4,7 @@ import { useRouter } from "expo-router"; import { Button, Typography } from "heroui-native"; import { PRODUCTS } from "@/data/mock"; import { ListingCard } from "@/components/ListingCard"; +import { PageContainer } from "@/components/PageContainer"; export default function HomeTab(): JSX.Element { const router = useRouter(); @@ -11,31 +12,31 @@ export default function HomeTab(): JSX.Element { return ( - - - {"The marketplace\n"} - - nobody controls. + + + + {"The marketplace\n"} + + nobody controls. + - - - Buy and sell freely. Payments are final — no chargebacks, no frozen accounts. - - - - - - - Featured listings - - - {featured.map((product) => ( - - ))} + + Buy and sell freely. Payments are final — no chargebacks, no frozen accounts. + + - + + + Featured listings + + {featured.map((product) => ( + + ))} + + + ); }