Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

**Don't just book a trip. Design the experience.**

**[Live demo →](https://wandr-tawny.vercel.app)**
**[Live demo →](https://wandr-tawny.vercel.app)**  ·  **[Pitch deck →](docs/deck/)**

Planning a trip today means ten open tabs: destination research, flights, trains, buses,
cabs, hotels, places to visit, activities, restaurants, and finally stitching it all into an
Expand Down Expand Up @@ -43,6 +43,12 @@ destination and duration, weather forecasts, and multi-currency conversion.
**Shareable trips.** A whole plan serialises into a URL, with QR code, WhatsApp / Telegram /
Twitter / email share targets, PDF voucher export and `.ics` calendar export.

## Pitch deck

Ten slides covering the problem, the product and the business model, as a
self-contained HTML deck in [`docs/deck/`](docs/deck/). Open it in a browser and
use the arrow keys, or print to PDF. See [the deck README](docs/deck/README.md).

## Tech stack

| | |
Expand Down
50 changes: 50 additions & 0 deletions docs/deck/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Wandr pitch deck

Ten slides, in HTML. Rebuilt from the original PDF deck so the content is
version-controlled and editable — the previous deck existed only as a flat,
image-only PDF with no text layer.

## Presenting

Open `index.html` in a browser, or serve the folder:

```bash
python3 -m http.server 4180 --directory docs/deck
```

| Key | Action |
| ---------------------- | ------------------ |
| `→` `Space` `PageDown` | Next slide |
| `←` `PageUp` | Previous slide |
| `Home` / `End` | First / last slide |
| `f` | Toggle fullscreen |

Clicking the left or right half of the window also navigates. The slide number
lives in the URL hash, so `#6` deep-links to slide 6.

## Exporting to PDF

Print the page (`⌘P`) and choose Save as PDF, landscape, background graphics on.
Or headless:

```bash
"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" \
--headless --no-pdf-header-footer \
--print-to-pdf=wandr-deck.pdf http://localhost:4180/
```

Both produce ten 16:9 pages.

> Gradient text renders as a solid accent in PDF exports. Chrome's print
> rasterizer draws a hairline box around `background-clip: text` spans, so the
> print stylesheet swaps in a flat colour. On screen the gradient is intact.

## Editing

Everything is one self-contained `index.html` — markup, styles and the ~40 lines
of navigation script. Slides are `<section class="slide">` elements in document
order; the design tokens are the custom properties at the top of the `<style>`
block.

Slides 1 and 10 use CSS gradients where the original deck used photography. Drop
real images into `.cover-bg` / `.closing-bg` if you want them back.
Loading
Loading