Dev Log
Production copy cleanup — remove prototype admissions, delete home-test
What was done
About page (src/pages/about/index.astro):
- Removed line: “Headshots for the rest of the team are placeholders in this prototype. Real photography to follow before public launch.”
- Removed orphaned
.team-asideCSS rule.
RS4 Nampa article (src/pages/dev-iq/land-use-intelligence/rs4-nampa.astro):
- Replaced the “Commissioner names redacted in this prototype. The production version uses…” note with neutral copy explaining that named commissioner detail is shared directly with active project teams (still factually correct, no longer outs the page as a prototype).
StubBlock component (src/components/StubBlock.astro):
- Badge:
PROTOTYPE STUB→EXPANDED ARTICLE COMING - Default message: dropped “prototype’s information architecture” / “production cutover” framing in favor of “We’re expanding this section. In the meantime, reach out directly…”
- Updated component JSDoc accordingly.
Careers fallback (src/pages/careers/[slug].astro):
- Reworded inline message from “in production” framing to “is being written. In the meantime, see…”
Projects index (src/pages/projects/index.astro):
- Removed HTML comment
<!-- Filter chips (cosmetic in prototype) -->(was rendered to source).
Deleted:
src/pages/home-test.astro— internal scratch page used to test layout variants. Already filtered from sitemap, but the URL was publicly reachable and pagefind-indexed.
Why
Pre-production audit before cutover from prototype.baileyengage.com → baileyengineers.com. Anything that read “prototype” or “before public launch” would either confuse users or signal that the live site isn’t actually live. Removed all such admissions while preserving the underlying truth (some content is still expanding) in language appropriate for a production site.
Verification
npm run buildclean- Pagefind: 120 → 119 indexed pages (home-test removed)
- Grep confirms no remaining user-visible “prototype” strings in
src/pages/orsrc/components/— only in BaseLayout comment (hostname-guard documentation, fine) and devlog files (already excluded from search + sitemap).
Files affected
- Modified:
src/pages/about/index.astro,src/pages/dev-iq/land-use-intelligence/rs4-nampa.astro,src/components/StubBlock.astro,src/pages/careers/[slug].astro,src/pages/projects/index.astro - Deleted:
src/pages/home-test.astro - Created: this devlog entry