Document Version: 1.0 DRAFT Date: December 18, 2025 Status: Architecture Review - Pending Team Input
This document outlines the development plan for building the FlyBirmingham.com website using modern web technologies. The project migrates the existing WordPress site to a new platform with enhanced functionality, improved performance, and easier content management.
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
| const fetchMachine = Machine({ | |
| id: 'fetch', | |
| initial: 'created', | |
| states: { | |
| created: { | |
| on: { | |
| PM_APPROVE: 'approved', | |
| PM_REJECT: 'rejected' | |
| } | |
| }, |
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
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |