Add mascot art, module lineup, and printable STL preview to /kyowc - #43
Merged
Conversation
EnumC
commented
Jul 19, 2026
Member
- Frog sticker in the hero, flipping to a black-and-white belly-up version when the yap-o-meter flatlines
- Pixel-art module lineup grid (core, button, fidget spinner, maze, resistance, wave)
- 3D print preview panel for the mascot STL
- Yelling-frog note card in the signup panel and sticker favicon
- Frog sticker in the hero, flipping to a black-and-white belly-up version when the yap-o-meter flatlines - Pixel-art module lineup grid (core, button, fidget spinner, maze, resistance, wave) - 3D print preview panel for the mascot STL - Yelling-frog note card in the signup panel and sticker favicon Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
✅ Deploy Preview for bananium ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
There was a problem hiding this comment.
Pull request overview
This PR enhances the /kyowc landing page with new mascot artwork, a pixel-art module lineup section, and a printable STL preview panel, plus updated metadata/iconography to match the new visuals.
Changes:
- Adds a hero mascot sticker that visually “flatlines” (rotates + swaps to B/W) when the yap-o-meter flatlines.
- Introduces a module lineup grid (core, button, fidget spinner, maze, resistance, wave) and an STL preview panel.
- Updates page metadata (description, favicon, OG image) and adds a “yap note” graphic in the signup panel.
Reviewed changes
Copilot reviewed 1 out of 12 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| src/kyowc.liquid | Source template updates for mascot behavior, module lineup grid, STL preview panel, and metadata/icon changes. |
| dist/kyowc/index.html | Built output reflecting the same page/content and behavior changes for deployment. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+718
to
+721
| var mascot = document.getElementById("mascot"); | ||
| var MASCOT_DEFAULT = mascot.src; | ||
| var MASCOT_COOKED = "/img/kyowc-sticker-bw.png"; | ||
| new Image().src = MASCOT_COOKED; |
| flatlined = isFlat; | ||
| document.body.classList.toggle("cooked", flatlined); | ||
| title.textContent = flatlined ? "We're cooked." : TITLE_DEFAULT; | ||
| mascot.src = flatlined ? MASCOT_COOKED : MASCOT_DEFAULT; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.