Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions web/src/components/Intro.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { QrCode, TicketCheck } from "lucide-react";
import { QrCode, Stamp } from "lucide-react";
import { Trans, useTranslation } from "react-i18next";

import { standardRewardMinStampsRequirement } from "@/lib/consts";
Expand All @@ -16,7 +16,7 @@ const Intro = () => {
<span>{t("rally.1")}</span>
</li>
<li className={"flex items-center"}>
<TicketCheck size={36} className={"mr-2 shrink-0"} />
<Stamp size={36} className={"mr-2 shrink-0"} />
<span>
<Trans
t={t}
Expand Down
4 changes: 2 additions & 2 deletions web/src/components/map/MapLegend.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Gift, ShoppingBag, TicketCheck } from "lucide-react";
import { Gift, ShoppingBag, Stamp } from "lucide-react";
import { Trans, useTranslation } from "react-i18next";

export const MapLegend = () => {
Expand All @@ -7,7 +7,7 @@ export const MapLegend = () => {
return (
<ul className="space-y-2">
<li className="flex gap-1">
<TicketCheck className="inline-block shrink-0 text-green-700" />{" "}
<Stamp className="inline-block shrink-0 text-green-700" />{" "}
<div>
<Trans
t={t}
Expand Down
6 changes: 3 additions & 3 deletions web/src/components/routes/rallyists/ArtistsList.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useNavigate } from "@tanstack/react-router";
import clsx from "clsx";
import { MapIcon, TicketCheck } from "lucide-react";
import { MapIcon, Stamp as StampIcon } from "lucide-react";
import { Suspense, useState } from "react";
import { useTranslation } from "react-i18next";

Expand Down Expand Up @@ -80,8 +80,8 @@ const ArtistsList = ({ stamps }: ArtistsListProps) => {
H{booth.hall} {booth.boothNumber}
</div>
{isStamped && (
<div className="absolute -top-1 -right-1 rotate-12 drop-shadow-sm">
<TicketCheck size={30} />
<div className="absolute -top-6 -right-1 rotate-12 drop-shadow-sm">
<StampIcon strokeWidth={1.5} size={35} />
</div>
)}
</div>
Expand Down
4 changes: 2 additions & 2 deletions web/src/components/routes/staff/QRCodeGen/QRCodeGen.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { RefreshCcw, TicketCheck } from "lucide-react";
import { RefreshCcw, Stamp } from "lucide-react";
import { useState } from "react";
import { useTranslation } from "react-i18next";
import QRCode from "react-qr-code";
Expand Down Expand Up @@ -44,7 +44,7 @@ const QRCodeGenPage = ({ boothId }: { boothId: ConvexId<"booths"> }) => {
{isLoading && <p>{t("loading")}</p>}
{error && <p>Error: {error.message}</p>}
<div className={"flex"}>
<TicketCheck className="mr-2" />
<Stamp className="mr-2" />
<p>
{tFR("scanThisQR")}
<br />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { RefreshCcw, TicketCheck } from "lucide-react";
import { RefreshCcw, Stamp } from "lucide-react";
import { useTranslation } from "react-i18next";
import QRCode from "react-qr-code";

Expand Down Expand Up @@ -61,7 +61,7 @@ const StandistsQRCodeGeneratorPage = () => {
/>
)}
<div className={"flex"}>
<TicketCheck className="mr-2" />
<Stamp className="mr-2" />
<p>
{tFR("scanThisQR")}
<br />
Expand Down
4 changes: 2 additions & 2 deletions web/src/routes/_rallyists/stamp.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useConfetti } from "@stevent-team/react-party";
import { createFileRoute } from "@tanstack/react-router";
import { MessageSquareWarning, TicketCheck } from "lucide-react";
import { MessageSquareWarning, Stamp as StampIcon } from "lucide-react";
import { LegacyRef, Suspense, useEffect } from "react";
import { Trans, useTranslation } from "react-i18next";

Expand Down Expand Up @@ -107,7 +107,7 @@ function Stamp() {
<ArtistImage imageUrl={booth.imageUrl} name={booth.name} />
</Suspense>
<div className="flex items-center gap-2 text-xl font-bold text-green-800">
<TicketCheck size={42} className="-rotate-12" /> {t("stampValidated")}
<StampIcon size={42} className="-rotate-12" /> {t("stampValidated")}
</div>
<RallyProgressBar />
<p className="text-gray-700">
Expand Down
Loading