Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

chore: add stock warning to store #694

Merged
merged 1 commit into from
Feb 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions layout/Attendee/Store/Store.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,16 @@ function Store() {
}, []);

return (
<Layout
// href="store"
title="Store"
description="Buy products with your collected tokens"
>
<Layout title="Store" description="Buy products with your collected tokens">
<div className="w-full font-semibold uppercase text-quinary">
<p>*subject to existing stock</p>
</div>
<div className="mt-5 text-white">
<Balance
token_balance={user.token_balance}
badge_count={user.badge_count}
/>
</div>

<div className="mt-10 grid grid-cols-1 justify-items-center gap-x-10 gap-y-14 text-white xs:grid-cols-2 md:gap-y-20 2xl:grid-cols-3">
{products &&
products
Expand Down
Loading