Skip to content

Commit

Permalink
feat(webapp): double table on auciton data card
Browse files Browse the repository at this point in the history
  • Loading branch information
gaboesquivel committed Apr 16, 2024
1 parent 97ae083 commit 5cb5215
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions apps/webapp/components/routes/auction/auction-info.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ProjectWithAuction } from '@/lib/projects'

export function AuctionInfo({ project }: { project: ProjectWithAuction }) {
return (
<div className="flex flex-col items-center gap-5">
<div className="grid items-center grid-cols-2 gap-5">
{fields.map((items, k) => (
<div
key={k}
Expand All @@ -22,13 +22,6 @@ export function AuctionInfo({ project }: { project: ProjectWithAuction }) {
)
}
const fields: Array<Array<ItemProps>> = [
[
{
label: 'Ticker',
value: 'BITCASH',
fields: []
}
],
[
{
label: 'Presale Period',
Expand Down Expand Up @@ -62,6 +55,18 @@ const fields: Array<Array<ItemProps>> = [
value: '$10,000',
fields: []
}
],
[
{
label: 'Ticker',
value: 'BC',
fields: []
},
{
label: 'Base price',
value: '$99.99',
fields: []
}
]
]

Expand Down
Binary file modified bun.lockb
Binary file not shown.

0 comments on commit 5cb5215

Please sign in to comment.