Rebuild the pitch deck as HTML - #4
Merged
Merged
Conversation
The deck existed only as an image-only PDF printed from a source nobody could find, so it could not be edited — which is why its AI claims outlived the ones removed from the app in dca5b42. Rebuilds all ten slides as a self-contained docs/deck/index.html: markup, styles and a small keyboard-navigation script, using the same Playfair Display / Plus Jakarta Sans pairing and gradient palette as the app. Arrow keys or click to advance, hash deep-links to a slide, and printing produces ten 16:9 pages. Copy now matches what the code does. 'Wandr uses AI to turn what travelers want' becomes 'Wandr turns what travelers want'; 'AI shapes the trip' becomes 'The planning engine shapes the trip'; AI-MATCHED becomes VIBE-MATCHED; AI UNDERSTANDS YOU becomes WANDR UNDERSTANDS YOU; AI-PERSONALIZATION becomes DEEP PERSONALIZATION; and the premium tier drops 'AI travel assistance'. The live demo badge on the product-proof slide now points at the deployed app. Gradient text falls back to a solid accent under print: Chrome's print rasterizer draws a hairline box around background-clip:text spans. Verified by exporting and inspecting the rendered pages. Slides 1 and 10 use CSS gradients where the original used photography. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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.
Closes the last gap between the deck and the product.
Why
The deck existed only as an image-only PDF, printed from a source that could not be found — not on GitHub, not in Canva, not on disk. There was no text layer to edit. That's why its AI claims outlived the ones removed from the app in dca5b42.
Rebuilding it in the repo makes it version-controlled and editable from here on.
What
All ten slides as a self-contained
docs/deck/index.html— markup, styles, and ~40 lines of navigation script. Same Playfair Display / Plus Jakarta Sans pairing and gradient palette as the app, so the deck and the product finally look like one thing.ffor fullscreen#6deep-linksCopy changes
AI-MATCHED DESTINATIONVIBE-MATCHED DESTINATIONAI UNDERSTANDS YOUWANDR UNDERSTANDS YOUAI-PERSONALIZATIONDEEP PERSONALIZATIONgrep -E '\bAI\b'over the deck returns nothing. Slide 6's LIVE DEMO badge is now a real link to the deployed app, and the team slide carries the actual URL.Verified
Every slide was rendered in a browser and inspected. Three layout bugs found and fixed that way:
PDF export tested by actually exporting: ten pages at 960×540pt, backgrounds and colors intact.
One known trade-off: gradient text renders as a solid accent in PDF exports. Chrome's print rasterizer draws a hairline box around
background-clip: textspans — visible in the export before the fix, gone after. On screen the gradient is untouched. Documented in the deck README.Note
Slides 1 and 10 use CSS gradients where the original used photography, since I didn't have the source images. Drop real ones into
.cover-bg/.closing-bgto restore them.The team slide is included (Ayan Alam, Arshil Khan) — that content came from
Meet WandR.pdfrather than the 9-slide main deck, so delete it if you'd rather not have it.🤖 Generated with Claude Code