diff --git a/src/app/ItemPage.js b/src/app/ItemPage.js index f9c7d4f..2fa75fc 100644 --- a/src/app/ItemPage.js +++ b/src/app/ItemPage.js @@ -47,6 +47,14 @@ function ItemPage() { const { item } = data; + return ( + + + + ); +} + +function ItemPageHeader({ item }) { return ( {item.name} - - {item.isNc ? : } - - Jellyneo - - {!item.isNc && ( - - Shop Wiz - - )} - {!item.isNc && ( - - Trades - - )} - {!item.isNc && ( - - Auctions - - )} - + ); } +function ItemPageBadges({ item }) { + return ( + + {item.isNc ? : } + + Jellyneo + + {!item.isNc && ( + + Shop Wiz + + )} + {!item.isNc && ( + + Trades + + )} + {!item.isNc && ( + + Auctions + + )} + + ); +} + function LinkBadge({ children, href }) { return (