# XWUIHrHeadcountPlansPage

Workforce Planning page that presents the Headcount Plans setup / empty-state. It calls `hrApi.getWorkforcePlanningSetup()` and renders a single feature-overview card built from the returned `headline`, `subheadline`, a `bullets` list, a row of check-marked `pills` (feature highlights), and a "Set up Workforce planning" CTA button that dispatches a bubbling `xwui-workforce-setup` CustomEvent. Extends `HrPageBase`/`XWUIShellPage`, supports English/Arabic via the `locale` config, and constructs with `hrApiOptions` (e.g. `{ env: 'sandbox' }`).

## Basic Usage

Loads the workforce-planning setup copy from the sandbox HR API and renders the feature-overview card with headline, bullets, feature pills, and the "Set up Workforce planning" call to action.

```example
file: examples/BasicUsage.ts
html: examples/BasicUsage.html
title: Basic Usage
description: Constructs XWUIHrHeadcountPlansPage in sandbox mode to display the workforce-planning setup card.
```

## Arabic locale (RTL)

Passes `{ locale: 'ar' }` with a `titleAr` so the page resolves the Arabic title (`خطط القوى العاملة`) and renders right-to-left.

```example
file: examples/ArabicLocale.ts
html: examples/ArabicLocale.html
title: Arabic locale (RTL)
description: Arabic title via titleAr plus locale 'ar' for a right-to-left page.
```

## Constrained, centered layout

Caps the content column at 1200px, centers it, and adds roomier padding via the shell-page config.

```example
file: examples/ConstrainedLayout.ts
html: examples/ConstrainedLayout.html
title: Constrained, centered layout
description: `{ maxWidth: '1200px', centered: true, padding: '2rem' }` constrains and centers the page column.
```

```api
```
