- index.css: @import "tailwindcss" + @theme block with full colour palette, shadows, radii, typography tokens, skeleton animation - index.html: Google Sans + Roboto Mono fonts, title → Flight Radar - src/lib/utils.ts: cn() helper (clsx + tailwind-merge) - Layout.tsx: 256px fixed sidebar on desktop (active pill nav, logo, Developer section divider), sticky top bar with page title + New Scan CTA (hidden on /scans), bottom nav bar on mobile with pill indicator - package.json/lock: add lucide-react, clsx, tailwind-merge - .gitignore: unblock frontend/package*.json and frontend/src/lib/ Build: 0 TypeScript errors · 0 console errors · all 6 criteria pass Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
63 lines
646 B
Plaintext
63 lines
646 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Virtual environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Output / generated data
|
|
*.csv
|
|
*.log
|
|
|
|
# JSON — keep fixture, airport data, and frontend manifests
|
|
*.json
|
|
!data/airports_by_country.json
|
|
!tests/confirmed_flights.json
|
|
!frontend/package.json
|
|
!frontend/package-lock.json
|
|
|
|
# Database files
|
|
*.db
|
|
|
|
# Node
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
!frontend/src/lib/
|