tsimport {Layout} from '@astryxdesign/core/Layout'
| Guidance | Practices |
|---|---|
| Do | Use Layout for page shells that need distinct zones like header, sidebar(s), content, and footer. |
| Do | Use HStack and VStack for simple directional stacking within a content area. |
| Don't | Use Layout for simple stacking layouts; use HStack or VStack instead. |
| Don't | Nest multiple Layout components; use one per page shell and compose content within its slots. |