Files
crewli/apps/app/src/@layouts/enums.ts
bert.hausmans 1cb7674d52 refactor: align codebase with EventCrew domain and trim legacy band stack
- Update API: events, users, policies, routes, resources, migrations
- Remove deprecated models/resources (customers, setlists, invitations, etc.)
- Refresh admin app and docs; remove apps/band

Made-with: Cursor
2026-03-29 23:19:06 +02:00

28 lines
485 B
TypeScript

export const ContentWidth = {
Fluid: 'fluid',
Boxed: 'boxed',
} as const
export const NavbarType = {
Sticky: 'sticky',
Static: 'static',
Hidden: 'hidden',
} as const
export const FooterType = {
Sticky: 'sticky',
Static: 'static',
Hidden: 'hidden',
} as const
export const AppContentLayoutNav = {
Vertical: 'vertical',
Horizontal: 'horizontal',
} as const
export const HorizontalNavType = {
Sticky: 'sticky',
Static: 'static',
Hidden: 'hidden',
} as const