add links to modeing hub cards
This commit is contained in:
parent
1cc4d718a5
commit
6a923a55a0
1 changed files with 9 additions and 1 deletions
|
@ -60,7 +60,15 @@ function ItemModelsList() {
|
|||
|
||||
function ItemModelCard({ item, ...props }) {
|
||||
return (
|
||||
<Box p="2" boxShadow="lg" borderRadius="lg" width="400px" {...props}>
|
||||
<Box
|
||||
as="a"
|
||||
href={`https://impress.openneo.net/items/${item.id}`}
|
||||
p="2"
|
||||
boxShadow="lg"
|
||||
borderRadius="lg"
|
||||
width="400px"
|
||||
{...props}
|
||||
>
|
||||
<ItemSummary item={item} badges={<ItemModelBadges item={item} />} />
|
||||
</Box>
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue