Reusable HUD Components

Don't repeat the recipe β€” bottle it

PawWalk has dozens of little uppercase mono labels: booking statuses, star ratings, section headers. Retyping fontFamily = JetBrainsMono, letterSpacing = ... on every Text invites drift β€” someone forgets the tracking, someone picks the wrong weight, and the design quietly falls apart.

The fix is the heart of Compose: make it a composable. You've written @Composable functions since Module 04 β€” a reusable component is just one designed with parameters for everything callers might want to change, and default values for everything they usually won't. ui/components/HudComponents.kt holds PawWalk's two workhorse components.