* refactor: decouple @hanzo/ui from hanzogui
Make @hanzo/ui shadcn-only — no hanzogui/Tamagui coupling.
- remove primitives/bases (gui/admin/svelte/vue) re-exports
- drop @hanzogui peerDependencies + peerDependenciesMeta entries
- add check-no-hanzogui guard, wired into build
- fix latent NodeJS.Timeout types to keep the build green
* refactor: remove duplicate @hanzo/brand from the monorepo
@hanzo/brand is owned by the standalone hanzoai/brand (the npm-canonical
source); this monorepo's copy was unused and had drifted.
- delete pkg/brand
- add check-no-brand-pkg guard (wired into `check`) so it can't reappear
* refactor(ui): stop importing from the app; use own cn util
pkg/ui pulled `cn` from @/lib/utils (../../app) — an inverted dependency on
the consuming app. Point the animation components at pkg/ui's own cn and
drop the @/app, @/registry, @/lib tsconfig path aliases.
* fix(ui): type errors; stop tracking the root lockfile
- ModelCard: lucide-react dropped the Github icon → use Code
- drawer: annotate DrawerTrigger/DrawerClose (radix type portability)
- untrack root pnpm-lock.yaml; CI → --no-frozen-lockfile
* release: bump @hanzo/ui to 5.7.0
* refactor: rename pkg/ → pkgs/, merge packages/ into it
standardize on 'pkgs/': move pkg/* and packages/* into pkgs/.
Update workspace globs, CI, scripts, and config references accordingly.