# BostromLabs Rebrand Notes

## What changed

BostromLabs is now the parent brand and landing-page shell. AeroTune remains the primary engineering tool inside the platform.

The current implementation is intentionally lightweight:

- FastAPI backend routes are preserved.
- Existing analyzer, parser, converter, tune tracking, report storage, and pilot-feel logic are preserved.
- The frontend remains a static hash-routed app served from `static/index.html`.
- The BostromLabs homepage is light, clean, and aerospace/software themed.
- AeroTune tool pages remain dark and technical so the analyzer still feels like an engineering workstation.

## New frontend sections

```text
BostromLabs Home
├── AeroTune Workstation
├── Tune Tracking
├── Blackbox Tools
├── Media / YouTube
├── Support / Patreon / Discord
├── About
├── Future Tools
└── Docs
```

## Key files touched

```text
app/main.py
static/index.html
static/favicon.svg
static/about_creator_card.js
static/assets/bostromlabs-logo.png
README.md
docs/planning/BOSTROMLABS_REBRAND_NOTES.md
```

## Preserved routes

The existing production routes remain in place:

```text
GET  /
GET  /api/pilot-feel-options
GET  /api/tune-change-options
POST /upload-log
POST /analyze-converted-flight
POST /optimize-log
POST /prepare-tune-tracking-raw
POST /track-converted-flight-pair
POST /compare-logs
POST /track-tune-change
GET  /reports/tune-changes/{report_id}.json
GET  /reports/tune-changes/{report_id}.md
GET  /download-optimized
GET  /plot
GET  /health
```

## Design rule

Do not rename the analyzer logic to BostromLabs. BostromLabs is the lab/platform. AeroTune is the FPV Blackbox product.

## Deployment notes

This remains practical for low-cost Render hosting because the frontend is static and the backend is still the same FastAPI app. Large Blackbox logs should still be analyzed locally when possible.
