# XWUIHrFlightTicketPolicyPage

Benefits page that presents annual-leave flight-ticket allowances as a card grid. It calls `hrApi.listFlightTicketPolicies()` and, under an "Annual leave flight tickets" section title, renders one card per policy showing the policy name with a status pill, the number of employees covered (👥), the ticket quota per period (🎟 e.g. "2 tickets / year"), and the eligible destinations (✈). Extends `HrPageBase`/`XWUIShellPage`, supports English/Arabic via the `locale` config, and constructs with `hrApiOptions` (e.g. `{ env: 'sandbox' }`).

## Basic Usage

Loads flight-ticket policies from the sandbox HR API and renders the annual-leave ticket allowance cards with per-policy quota, covered-employee count, and destinations.

```example
file: examples/BasicUsage.ts
html: examples/BasicUsage.html
title: Basic Usage
description: Constructs XWUIHrFlightTicketPolicyPage in sandbox mode to display annual-leave ticket policy cards.
```

## 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
```
