diff --git a/my-turborepo/apps/nextjs/src/app/challenges/helpers/Prizes.tsx b/my-turborepo/apps/nextjs/src/app/challenges/helpers/Prizes.tsx index 13c5b7ac..2bcf6d80 100644 --- a/my-turborepo/apps/nextjs/src/app/challenges/helpers/Prizes.tsx +++ b/my-turborepo/apps/nextjs/src/app/challenges/helpers/Prizes.tsx @@ -1,27 +1,33 @@ import Image from "next/image"; - import Heading from "~/app/challenges/helpers/Heading"; interface prizeSchema { name: string; img_url?: string; } + const places = ["1st", "2nd", "3rd", "4th", "5th"]; + export default function Prizes({ prizes }: { prizes: prizeSchema[] }) { return ( -