Browse Source

add lemonade stand

master
Stephanie Gredell 3 weeks ago
parent
commit
fa59e065ac
  1. BIN
      frontend/public/juice.png
  2. 13
      frontend/src/pages/LandingPage.tsx

BIN
frontend/public/juice.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

13
frontend/src/pages/LandingPage.tsx

@ -124,7 +124,7 @@ export function LandingPage() {
/> />
) : app.id === 'iframegame' ? ( ) : app.id === 'iframegame' ? (
<OptimizedImage <OptimizedImage
src="/magic-wand.png" src="/drawing.png"
alt="Embedded Game" alt="Embedded Game"
className="w-20 h-20 object-contain" className="w-20 h-20 object-contain"
width={80} width={80}
@ -132,6 +132,17 @@ export function LandingPage() {
loading="eager" loading="eager"
fetchPriority="auto" fetchPriority="auto"
/> />
) : app.id === 'lemonade-stand' ? (
<OptimizedImage
src="/juice.png"
alt="Lemonade Stand"
className="w-20 h-20 object-contain"
width={80}
height={80}
loading="eager"
fetchPriority="auto"
disableWebP={true}
/>
) : ( ) : (
<span className="text-5xl">{emoji}</span> <span className="text-5xl">{emoji}</span>
)} )}

Loading…
Cancel
Save