
Managing 8 App Landing Pages from a Single Repository
When building multiple apps, each one needs its own landing page. Creating 8 separate repositories is too much management overhead, and bundling them together makes deployment complex. The solution I settled on was a single repository + individual Netlify sites strategy. Directory Structure landing/ ├── index.html # Company main page ├── [service-A]/ │ ├── index.html │ ├── privacy/ │ └── terms/ ├── [service-B]/ │ ├── index.html │ ├── privacy/ │ └── terms/ ├── [service-C]/ │ └── index.html │ ... └── Makefile Each service has its own independent directory. The privacy/ and terms/ subpages are required for App Store / Google Play review submission. ...