2a7b34d5a3
Replaces the plain oxblood-filled rectangle + system-font text SVG with a polished button that matches the getcodegraph.com design language: - Cream (#f7f6f2) rounded-rect background with a soft hairline border, 8px radius, 52px height - Logo mark (graph triangle, mirrors favicon.svg) in ink/oxblood at left - Hairline divider separating mark from label - "Join the waitlist!" label rendered as vector outlines (Archivo Bold 760, 17.5px) so the brand typeface renders correctly on GitHub, which blocks @font-face in statically-served SVGs - Oxblood arrow at right Adds assets/generate-waitlist.py (requires fonttools + brotli) so the SVG can be regenerated from the landing-page's Archivo variable font. Updates the README img height from 44→52 to match the new geometry.
66 lines
792 B
Plaintext
66 lines
792 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Build output
|
|
dist/
|
|
|
|
.cmem
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Test coverage
|
|
/coverage/
|
|
.nyc_output/
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# TypeScript build info
|
|
*.tsbuildinfo
|
|
|
|
# SQLite WAL mode files
|
|
*.db-wal
|
|
*.db-shm
|
|
|
|
# Local Claude settings
|
|
.claude/settings.local.json
|
|
.claude/scheduled_tasks.lock
|
|
|
|
# Parallels Windows VM SSH/connection config (local machine, see CLAUDE.md)
|
|
.parallels
|
|
|
|
# CodeGraph data directories (in test projects)
|
|
.codegraph/
|
|
|
|
test_frameworks
|
|
|
|
# Test language repos for manual testing
|
|
test-languages/
|
|
|
|
nul
|
|
release/
|
|
|
|
.antigravitycli/
|
|
|
|
# Local-only: browser-based tmux session launcher (see tmux-web/README.md)
|
|
tmux-web/
|
|
|
|
assets/__pycache__/
|
|
|
|
assets/generate-waitlist.py
|