Skip to content

Commit

Permalink
fix: image
Browse files Browse the repository at this point in the history
  • Loading branch information
Alessandro Mazzon committed Oct 17, 2023
1 parent 302685e commit 64820cd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions app/creator/events/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ export default function EventDetails({ params }: { params: any }) {
width={40}
height={40}
alt={"calendar icon"}
src={"/eventDetailsCalendarIcon.png"}
src={"/eventDetailsCalendarBigIcon.png"}
/>
</div>
<div>
Expand Down Expand Up @@ -335,13 +335,15 @@ export default function EventDetails({ params }: { params: any }) {
{ticketCategory.name}
</div>
<div className="flex flex-row gap-2 items-center mb-2">
<Image
alt={"Tickets icon"}
src={"/eventDetailsTicketIcon.png"}
width={20}
height={20}
/>
<div className="text-base font-normal leading-normal text-bondscape-text_neutral_700">
<div className="relative">
<Image
alt={"Tickets icon"}
src={"/eventDetailsTicketIcon.png"}
width={20}
height={20}
/>
</div>
<div className="text-base font-normal leading-normal text-bondscape-text_neutral_700 mt-0.5">
{ticketCategory?.ticketsSold?.aggregate.count ?? 0} /{" "}
{ticketCategory.totalTicketsAvailable}
</div>
Expand Down Expand Up @@ -370,7 +372,7 @@ export default function EventDetails({ params }: { params: any }) {
width={20}
height={20}
/>
<div className="text-base font-normal leading-normal text-bondscape-text_neutral_700">
<div className="text-base font-normal leading-normal text-bondscape-text_neutral_700 mt-0.5">
{
getEventPeriodExtended(
ticketCategory?.startDate,
Expand Down
Binary file added public/eventDetailsCalendarBigIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 64820cd

Please sign in to comment.