// GUIDE — 1 MIN READ

the admin panel, explained.

every site i build ships with an admin — a private page where you run the business side of your website without calling anyone.

what's in it

depends on the site, but the pattern holds:

  • leads. every form your customers fill lands here. name, number, what they asked for, when. nothing gets lost in an inbox.
  • content. menus, prices, photos, announcements. the things that change monthly. you edit them in a form; the site updates instantly.
  • subscribers. everyone who gave you their email, exportable any time. it's your list, not mine.
  • activity. a log of what happened — who signed up, what changed, when. boring until the day you need it.

why it matters more than the pretty part

the public site gets you the customer. the admin keeps them. a restaurant that can 86 a dish from a phone at 6pm keeps its menu honest. a group home that sees every placement inquiry in one queue never misses a family. that's operations, and it's where the money actually is.

security, since you should ask

your admin sits behind a locked door — a password only you hold, sessions that expire, and on higher tiers two-factor login (the code from your phone). the data lives in a real database with nightly backups, not a spreadsheet on someone's laptop. and it's yours: full export, any time, no ransom.

try one right now

the demo sites in the showroom have their admins wide open — no password, fake data, reset nightly. go break something. that's what it's there for.

— walkperro for the ones who do.