Move version history to bottom, add FAQ to hero with v1.3 tag

- Hero now shows "WARIO SYNTH v1.3" with FAQ button
- Version history moved to bottom of page
- Added Wario Synthesis Engine explanation to FAQ
- Bigger Wario sprite (192px)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
b1rdmania
2025-12-29 14:49:10 +00:00
parent 6dd1bad736
commit 2df84d9679
2 changed files with 47 additions and 26 deletions
+3
View File
@@ -69,6 +69,7 @@ class MotifApp {
private copyToast: HTMLElement | null = null;
// FAQ modal
private faqBtnTop: HTMLButtonElement | null = null;
private faqBtnFooter: HTMLButtonElement | null = null;
private newSearchBtn: HTMLButtonElement | null = null;
private faqBackdrop!: HTMLElement;
@@ -152,6 +153,7 @@ class MotifApp {
this.copyToast = document.getElementById('copyToast');
// FAQ modal
this.faqBtnTop = document.getElementById('faqBtnTop') as HTMLButtonElement | null;
this.faqBtnFooter = document.getElementById('faqBtnFooter') as HTMLButtonElement | null;
this.newSearchBtn = document.getElementById('newSearchBtn') as HTMLButtonElement | null;
this.faqBackdrop = document.getElementById('faqModalBackdrop')!;
@@ -197,6 +199,7 @@ class MotifApp {
this.enableAudioBtn.addEventListener('touchend', enable, { passive: true });
// FAQ
this.faqBtnTop?.addEventListener('click', () => this.openFaq());
this.faqBtnFooter?.addEventListener('click', () => this.openFaq());
this.newSearchBtn?.addEventListener('click', () => this.resetToNewSearch());
this.faqCloseBtn.addEventListener('click', () => this.closeFaq());