refactor: move public static pages
Some checks failed
Backend CI/CD / build_and_deploy (push) Has been cancelled
Frontend CI/CD / build_and_deploy (push) Has been cancelled

This commit is contained in:
2026-05-05 11:39:02 -04:00
parent 5baacbceea
commit f6c351c31e
22 changed files with 47 additions and 28 deletions

View File

@@ -88,7 +88,7 @@ When adding, removing, or renaming public indexed pages, update all of these:
Public page metadata helper:
```txt
frontend/src/features/landing/publicPageMeta.js
frontend/src/static/publicPageMeta.js
```
## Server Routing

View File

@@ -0,0 +1,19 @@
# Task: Move public static pages
## Goal
Move public marketing/static page code out of `frontend/src/features/landing` into `frontend/src/static` so it is separated from application feature modules.
## Relevant Files
- `frontend/src/router/router.js`
- `frontend/src/entry-public-ssr.js`
- `frontend/src/static/**`
- `docs/SEO.md`
## Validation
```bash
cd frontend
npm run build
```