import Link from "next/link"; import { Band, CtaBand, PageHead, SiteNav, body, small } from "@/components/site"; export const metadata = { title: "Guides", description: "Notes on running a linen room — hospital, aged care or clinic: stocktakes that produce a usable number, where uniforms actually go, charging spend to the right ward, and entitlements that hold up.", alternates: { canonical: "/guides" }, }; /* Written for the person doing the job, not for the person buying software. Each of these is useful with a clipboard and no product at all — which is the only reason anyone would link to them. */ export const GUIDES: [string, string, string][] = [ [ "/guides/uniform-stocktake", "How to run a uniform stocktake", "What to count, how to split a room into shelves, what to do about garments at the laundry, and how to record a variance so the number still means something a month later.", ], [ "/guides/uniform-loss", "Where the uniforms actually go", "Loss is rarely theft. Leavers nobody closed off, sizes swapped at the shelf, laundry that never came back, damage never written off — and how to tell them apart.", ], [ "/guides/cost-centre-reporting", "Charging uniforms to the right cost centre", "Capturing the cost centre at the counter, valuing an issue defensibly, and producing a journal finance will actually accept.", ], [ "/guides/manager-approvals", "Entitlements and manager approvals", "Writing the entitlement down, prorating part-time hours honestly, recording an approval that carries its own evidence, and what to do when someone asks for more.", ], ]; export default function Guides() { return ( <> {GUIDES.map(([href, title, blurb], i) => (
{String(i + 1).padStart(2, "0")}

{title}

{blurb}

))}

Something missing that you had to work out the hard way?{" "} Tell us and it will get written up.

); }