Dentolize · Clinic-Web Search Deindexing Walkthrough
On this pageDoes this need to be taught?If it comes up anywayInternal note for anyone teaching this codebase to new engineers

For Training

Does this need to be taught?

No. There is nothing for clinic staff to learn, configure, or change about how they use clinic-web. This is not a feature with a UI, a setting, or a workflow — skip it in onboarding materials and staff training decks.

If it comes up anyway

Occasionally a clinic owner or IT-savvy staff member notices robots.txt or views page source and asks about it. A short, accurate answer:

"Our clinic dashboard tells search engines not to index it — the same way most login-required business software does. It doesn't change anything about how you log in or use the app."

Internal note for anyone teaching this codebase to new engineers

Worth mentioning once, when walking a new engineer through clinic-web's structure: packages/clinic-web/public/index.html is the single shell served for every route (it's a client-rendered SPA), so any tag placed there — canonical link, robots meta, viewport, etc. — applies globally and cannot be varied per-route without serving a different HTML file per route, which this app does not do. See Robots Meta Tag & robots.txt for the specifics.