x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
<div class="tw:p-6 tw:max-w-7xl tw:mx-auto tw:space-y-8"> <!-- Introductory callout --> <div class="tw-callout"> <p class="tw:mb-1 tw:text-sm tw:font-mono"> <strong>PAGE HEADER:</strong> Composable page-level header with optional rows.<br> <strong>COMPOSES:</strong> Breadcrumb | Tabs | Buttons | Typography </p> <p class="tw:mb-0 tw:text-sm"> The page header provides a consistent top section for every page. All rows are optional except <code>.page-header-main</code>. Combine breadcrumbs, back navigation, title + subtitle, action buttons, a generic slot, and tabs as needed. </p> </div> <!-- ============================================================ 1. Minimal (back + title + subtitle) ============================================================ --> <div class="tw:border-t tw:pt-6"> <h2 class="tw-h4 tw:mb-4">1. Minimal</h2> <div class="tw-callout tw:mb-4"> <p class="tw:mb-0 tw:text-sm"> <strong>Minimal:</strong> Back arrow, page title, and a subtitle on the same line. The simplest useful configuration. </p> </div> <div class="tw-page-header"> <div class="tw-page-header-main"> <a href="#" class="tw-page-header-back" aria-label="Go back"> <i class="fa-solid fa-chevron-left tw-page-header-back-icon"></i> </a> <div class="tw-page-header-title-group"> <h1 class="tw-page-header-title">Phase Settings</h1> <span class="tw-page-header-subtitle">Initial Application</span> </div> </div> </div> <div class="tw:mt-4 tw:text-sm tw:text-gray-600"> <code><div class="tw-page-header"><div class="tw-page-header-main"><a class="tw-page-header-back">...</a><div class="tw-page-header-title-group"><h1 class="tw-page-header-title">...</h1><span class="tw-page-header-subtitle">...</span></div></div></div></code> </div> </div> <!-- ============================================================ 2. With Actions ============================================================ --> <div class="tw:border-t tw:pt-6"> <h2 class="tw-h4 tw:mb-4">2. With Actions</h2> <div class="tw-callout tw:mb-4"> <p class="tw:mb-0 tw:text-sm"> <strong>Actions:</strong> Add <code>.page-header-actions</code> to place buttons on the right side of the header. </p> </div> <div class="tw-page-header"> <div class="tw-page-header-main"> <a href="#" class="tw-page-header-back" aria-label="Go back"> <i class="fa-solid fa-chevron-left tw-page-header-back-icon"></i> </a> <div class="tw-page-header-title-group"> <h1 class="tw-page-header-title">Customise Application Journey</h1> <span class="tw-page-header-subtitle">Year 7 Entry 2026</span> </div> <div class="tw-page-header-actions"> <button class="tw-btn tw-btn-secondary" type="button">Switch to Old View</button> <button class="tw-btn tw-btn-secondary" type="button">Global Settings</button> <button class="tw-btn tw-btn-primary" type="button">Create Test Application</button> </div> </div> </div> <div class="tw:mt-4 tw:text-sm tw:text-gray-600"> <code><div class="tw-page-header-actions"><button class="tw-btn tw-btn-secondary">...</button></div></code> </div> </div> <!-- ============================================================ 3. With Actions + Slot ============================================================ --> <div class="tw:border-t tw:pt-6"> <h2 class="tw-h4 tw:mb-4">3. With Actions + Slot</h2> <div class="tw-callout tw:mb-4"> <p class="tw:mb-0 tw:text-sm"> <strong>Slot:</strong> Use <code>.page-header-slot</code> for arbitrary content below the main row (e.g. filters, descriptions, badges). </p> </div> <div class="tw-page-header"> <div class="tw-page-header-main"> <a href="#" class="tw-page-header-back" aria-label="Go back"> <i class="fa-solid fa-chevron-left tw-page-header-back-icon"></i> </a> <div class="tw-page-header-title-group"> <h1 class="tw-page-header-title">Application Review</h1> <span class="tw-page-header-subtitle">Sarah Johnson</span> </div> <div class="tw-page-header-actions"> <button class="tw-btn tw-btn-outline-danger" type="button">Reject</button> <button class="tw-btn tw-btn-success" type="button">Approve</button> </div> </div> <div class="tw-page-header-slot"> <div class="tw:flex tw:items-center tw:gap-3"> <span class="tw-badge tw-badge-success-subtle">MIS Compatible</span> <span class="tw-badge tw-badge-info-subtle">Year 7</span> <span class="tw:text-body-xs tw:leading-body-xs tw:text-neutral-500">Submitted 15 March 2026</span> </div> </div> </div> <div class="tw:mt-4 tw:text-sm tw:text-gray-600"> <code><div class="tw-page-header-slot">...any content...</div></code> </div> </div> <!-- ============================================================ 4. With Breadcrumbs ============================================================ --> <div class="tw:border-t tw:pt-6"> <h2 class="tw-h4 tw:mb-4">4. With Breadcrumbs</h2> <div class="tw-callout tw:mb-4"> <p class="tw:mb-0 tw:text-sm"> <strong>Breadcrumbs:</strong> Add <code>.page-header-breadcrumb</code> above the main row to show the user's location in the hierarchy. </p> </div> <div class="tw-page-header"> <div class="tw-page-header-breadcrumb"> <nav aria-label="Breadcrumb"> <ol class="tw-breadcrumb"> <li class="tw-breadcrumb-item"> <a href="#" aria-label="Home"> <i class="fa-solid fa-house tw-breadcrumb-item-icon"></i> </a> </li> <li class="tw-breadcrumb-item"><a href="#">Admissions</a></li> <li class="tw-breadcrumb-item tw-active" aria-current="page">Phase Settings</li> </ol> </nav> </div> <div class="tw-page-header-main"> <a href="#" class="tw-page-header-back" aria-label="Go back"> <i class="fa-solid fa-chevron-left tw-page-header-back-icon"></i> </a> <div class="tw-page-header-title-group"> <h1 class="tw-page-header-title">Phase Settings</h1> <span class="tw-page-header-subtitle">Initial Application</span> </div> </div> </div> <div class="tw:mt-4 tw:text-sm tw:text-gray-600"> <code><div class="tw-page-header-breadcrumb"><nav aria-label="Breadcrumb"><ol class="tw-breadcrumb">...</ol></nav></div></code> </div> </div> <!-- ============================================================ 5. With Breadcrumbs + Actions ============================================================ --> <div class="tw:border-t tw:pt-6"> <h2 class="tw-h4 tw:mb-4">5. With Breadcrumbs + Actions</h2> <div class="tw-callout tw:mb-4"> <p class="tw:mb-0 tw:text-sm"> <strong>Breadcrumbs + Actions:</strong> Common configuration for settings and detail pages where the user needs both context and available actions. </p> </div> <div class="tw-page-header"> <div class="tw-page-header-breadcrumb"> <nav aria-label="Breadcrumb"> <ol class="tw-breadcrumb"> <li class="tw-breadcrumb-item"> <a href="#" aria-label="Home"> <i class="fa-solid fa-house tw-breadcrumb-item-icon"></i> </a> </li> <li class="tw-breadcrumb-item"><a href="#">Admissions</a></li> <li class="tw-breadcrumb-item"><a href="#">Year 7 Entry 2026</a></li> <li class="tw-breadcrumb-item tw-active" aria-current="page">Application Journey</li> </ol> </nav> </div> <div class="tw-page-header-main"> <a href="#" class="tw-page-header-back" aria-label="Go back"> <i class="fa-solid fa-chevron-left tw-page-header-back-icon"></i> </a> <div class="tw-page-header-title-group"> <h1 class="tw-page-header-title">Customise Application Journey</h1> <span class="tw-page-header-subtitle">Year 7 Entry 2026</span> </div> <div class="tw-page-header-actions"> <button class="tw-btn tw-btn-secondary" type="button">Switch to Old View</button> <button class="tw-btn tw-btn-secondary" type="button">Global Settings</button> <button class="tw-btn tw-btn-primary" type="button">Create Test Application</button> </div> </div> </div> <div class="tw:mt-4 tw:text-sm tw:text-gray-600"> <code>Combine .page-header-breadcrumb + .page-header-main + .page-header-actions</code> </div> </div> <!-- ============================================================ 6. With Breadcrumbs + Actions + Slot ============================================================ --> <div class="tw:border-t tw:pt-6"> <h2 class="tw-h4 tw:mb-4">6. With Breadcrumbs + Actions + Slot</h2> <div class="tw-callout tw:mb-4"> <p class="tw:mb-0 tw:text-sm"> <strong>Full without tabs:</strong> Breadcrumbs, back, title, subtitle, actions, and a slot area below. </p> </div> <div class="tw-page-header"> <div class="tw-page-header-breadcrumb"> <nav aria-label="Breadcrumb"> <ol class="tw-breadcrumb"> <li class="tw-breadcrumb-item"> <a href="#" aria-label="Home"> <i class="fa-solid fa-house tw-breadcrumb-item-icon"></i> </a> </li> <li class="tw-breadcrumb-item"><a href="#">Admissions</a></li> <li class="tw-breadcrumb-item tw-active" aria-current="page">Applicant Detail</li> </ol> </nav> </div> <div class="tw-page-header-main"> <a href="#" class="tw-page-header-back" aria-label="Go back"> <i class="fa-solid fa-chevron-left tw-page-header-back-icon"></i> </a> <div class="tw-page-header-title-group"> <h1 class="tw-page-header-title">Emily Thompson</h1> <span class="tw-page-header-subtitle">Year 7 Entry 2026</span> </div> <div class="tw-page-header-actions"> <button class="tw-btn tw-btn-outline-secondary" type="button">Export PDF</button> <button class="tw-btn tw-btn-primary" type="button">Send Decision</button> </div> </div> <div class="tw-page-header-slot"> <div class="tw:flex tw:items-center tw:gap-3"> <span class="tw-badge tw-badge-warning-subtle">Pending Review</span> <span class="tw-badge tw-badge-secondary-subtle">Internal</span> <span class="tw:text-body-xs tw:leading-body-xs tw:text-neutral-500">Applied: 2 February 2026</span> </div> </div> </div> <div class="tw:mt-4 tw:text-sm tw:text-gray-600"> <code>Combine all optional rows: .page-header-breadcrumb + .page-header-main + .page-header-slot</code> </div> </div> <!-- ============================================================ 7. With Tabs ============================================================ --> <div class="tw:border-t tw:pt-6"> <h2 class="tw-h4 tw:mb-4">7. With Tabs</h2> <div class="tw-callout tw:mb-4"> <p class="tw:mb-0 tw:text-sm"> <strong>Tabs:</strong> Wrap the existing <code>.tabs</code> component inside <code>.page-header-tabs</code>. The bottom border of the page header is automatically removed when tabs are present (via <code>:has()</code>). </p> </div> <div class="tw-page-header"> <div class="tw-page-header-main"> <a href="#" class="tw-page-header-back" aria-label="Go back"> <i class="fa-solid fa-chevron-left tw-page-header-back-icon"></i> </a> <div class="tw-page-header-title-group"> <h1 class="tw-page-header-title">Application Journey</h1> <span class="tw-page-header-subtitle">Year 7 Entry 2026</span> </div> </div> <div class="tw-page-header-tabs"> <div class="tw-tabs" role="tablist"> <button class="tw-tab tw-active" role="tab" aria-selected="true" type="button">Overview</button> <button class="tw-tab" role="tab" aria-selected="false" type="button">Phases</button> <button class="tw-tab" role="tab" aria-selected="false" type="button">Forms</button> <button class="tw-tab" role="tab" aria-selected="false" type="button">Communications</button> </div> </div> </div> <div class="tw:mt-4 tw:text-sm tw:text-gray-600"> <code><div class="tw-page-header-tabs"><div class="tw-tabs" role="tablist"><button class="tw-tab tw-active">...</button></div></div></code> </div> </div> <!-- ============================================================ 8. With Breadcrumbs + Tabs ============================================================ --> <div class="tw:border-t tw:pt-6"> <h2 class="tw-h4 tw:mb-4">8. With Breadcrumbs + Tabs</h2> <div class="tw-callout tw:mb-4"> <p class="tw:mb-0 tw:text-sm"> <strong>Breadcrumbs + Tabs:</strong> Breadcrumbs above the title row, tabs below. Both rows are independently optional. </p> </div> <div class="tw-page-header"> <div class="tw-page-header-breadcrumb"> <nav aria-label="Breadcrumb"> <ol class="tw-breadcrumb"> <li class="tw-breadcrumb-item"> <a href="#" aria-label="Home"> <i class="fa-solid fa-house tw-breadcrumb-item-icon"></i> </a> </li> <li class="tw-breadcrumb-item"><a href="#">Admissions</a></li> <li class="tw-breadcrumb-item tw-active" aria-current="page">Application Journey</li> </ol> </nav> </div> <div class="tw-page-header-main"> <a href="#" class="tw-page-header-back" aria-label="Go back"> <i class="fa-solid fa-chevron-left tw-page-header-back-icon"></i> </a> <div class="tw-page-header-title-group"> <h1 class="tw-page-header-title">Application Journey</h1> <span class="tw-page-header-subtitle">Year 7 Entry 2026</span> </div> </div> <div class="tw-page-header-tabs"> <div class="tw-tabs" role="tablist"> <button class="tw-tab tw-active" role="tab" aria-selected="true" type="button">Overview</button> <button class="tw-tab" role="tab" aria-selected="false" type="button">Phases</button> <button class="tw-tab" role="tab" aria-selected="false" type="button">Forms</button> </div> </div> </div> <div class="tw:mt-4 tw:text-sm tw:text-gray-600"> <code>Combine .page-header-breadcrumb + .page-header-main + .page-header-tabs</code> </div> </div> <!-- ============================================================ 9. Full Variant (Breadcrumbs + Tabs + Actions) ============================================================ --> <div class="tw:border-t tw:pt-6"> <h2 class="tw-h4 tw:mb-4">9. Full Variant (Breadcrumbs + Tabs + Actions)</h2> <div class="tw-callout tw:mb-4"> <p class="tw:mb-0 tw:text-sm"> <strong>Full:</strong> All optional rows combined — breadcrumbs, back, title + subtitle, actions, and tabs. This is the maximum configuration. </p> </div> <div class="tw-page-header"> <div class="tw-page-header-breadcrumb"> <nav aria-label="Breadcrumb"> <ol class="tw-breadcrumb"> <li class="tw-breadcrumb-item"> <a href="#" aria-label="Home"> <i class="fa-solid fa-house tw-breadcrumb-item-icon"></i> </a> </li> <li class="tw-breadcrumb-item"><a href="#">Admissions</a></li> <li class="tw-breadcrumb-item"><a href="#">Year 7 Entry 2026</a></li> <li class="tw-breadcrumb-item tw-active" aria-current="page">Application Journey</li> </ol> </nav> </div> <div class="tw-page-header-main"> <a href="#" class="tw-page-header-back" aria-label="Go back"> <i class="fa-solid fa-chevron-left tw-page-header-back-icon"></i> </a> <div class="tw-page-header-title-group"> <h1 class="tw-page-header-title">Customise Application Journey</h1> <span class="tw-page-header-subtitle">Year 7 Entry 2026</span> </div> <div class="tw-page-header-actions"> <button class="tw-btn tw-btn-secondary" type="button">Switch to Old View</button> <button class="tw-btn tw-btn-secondary" type="button">Global Settings</button> <button class="tw-btn tw-btn-primary" type="button">Create Test Application</button> </div> </div> <div class="tw-page-header-tabs"> <div class="tw-tabs" role="tablist"> <button class="tw-tab tw-active" role="tab" aria-selected="true" type="button">Overview</button> <button class="tw-tab" role="tab" aria-selected="false" type="button">Phases</button> <button class="tw-tab" role="tab" aria-selected="false" type="button">Forms</button> <button class="tw-tab" role="tab" aria-selected="false" type="button">Communications</button> <button class="tw-tab" role="tab" aria-selected="false" type="button">Settings</button> </div> </div> </div> <div class="tw:mt-4 tw:text-sm tw:text-gray-600"> <code>All rows: .page-header-breadcrumb + .page-header-main (with .page-header-actions) + .page-header-tabs</code> </div> </div> <!-- ============================================================ 10. No Back Arrow ============================================================ --> <div class="tw:border-t tw:pt-6"> <h2 class="tw-h4 tw:mb-4">10. No Back Arrow</h2> <div class="tw-callout tw:mb-4"> <p class="tw:mb-0 tw:text-sm"> <strong>No back:</strong> The back arrow is optional. Omit <code>.page-header-back</code> when the page is a top-level destination (e.g. dashboard, home). </p> </div> <div class="tw-page-header"> <div class="tw-page-header-main"> <div class="tw-page-header-title-group"> <h1 class="tw-page-header-title">Dashboard</h1> <span class="tw-page-header-subtitle">Admissions Overview</span> </div> <div class="tw-page-header-actions"> <button class="tw-btn tw-btn-outline-secondary" type="button">Export</button> <button class="tw-btn tw-btn-primary" type="button">New Application Form</button> </div> </div> <div class="tw-page-header-slot"> <p class="tw:text-body-s tw:leading-body-s tw:text-neutral-600 tw:m-0"> Showing data for the current academic year. Last updated 5 minutes ago. </p> </div> </div> <div class="tw:mt-4 tw:text-sm tw:text-gray-600"> <code>Simply omit the <a class="tw-page-header-back"> element when no back navigation is needed.</code> </div> </div></div>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
<div class="tw:p-6 tw:max-w-7xl tw:mx-auto tw:space-y-8"> <!-- Introductory callout --> <div class="tw-callout"> <p class="tw:mb-1 tw:text-sm tw:font-mono"> <strong>PAGE HEADER:</strong> Composable page-level header with optional rows.<br> <strong>COMPOSES:</strong> Breadcrumb | Tabs | Buttons | Typography </p> <p class="tw:mb-0 tw:text-sm"> The page header provides a consistent top section for every page. All rows are optional except <code>.page-header-main</code>. Combine breadcrumbs, back navigation, title + subtitle, action buttons, a generic slot, and tabs as needed. </p> </div> <!-- ============================================================ 1. Minimal (back + title + subtitle) ============================================================ --> <div class="tw:border-t tw:pt-6"> <h2 class="tw-h4 tw:mb-4">1. Minimal</h2> <div class="tw-callout tw:mb-4"> <p class="tw:mb-0 tw:text-sm"> <strong>Minimal:</strong> Back arrow, page title, and a subtitle on the same line. The simplest useful configuration. </p> </div> <div class="tw-page-header"> <div class="tw-page-header-main"> <a href="#" class="tw-page-header-back" aria-label="Go back"> <i class="fa-solid fa-chevron-left tw-page-header-back-icon"></i> </a> <div class="tw-page-header-title-group"> <h1 class="tw-page-header-title">Phase Settings</h1> <span class="tw-page-header-subtitle">Initial Application</span> </div> </div> </div> <div class="tw:mt-4 tw:text-sm tw:text-gray-600"> <code><div class="tw-page-header"><div class="tw-page-header-main"><a class="tw-page-header-back">...</a><div class="tw-page-header-title-group"><h1 class="tw-page-header-title">...</h1><span class="tw-page-header-subtitle">...</span></div></div></div></code> </div> </div> <!-- ============================================================ 2. With Actions ============================================================ --> <div class="tw:border-t tw:pt-6"> <h2 class="tw-h4 tw:mb-4">2. With Actions</h2> <div class="tw-callout tw:mb-4"> <p class="tw:mb-0 tw:text-sm"> <strong>Actions:</strong> Add <code>.page-header-actions</code> to place buttons on the right side of the header. </p> </div> <div class="tw-page-header"> <div class="tw-page-header-main"> <a href="#" class="tw-page-header-back" aria-label="Go back"> <i class="fa-solid fa-chevron-left tw-page-header-back-icon"></i> </a> <div class="tw-page-header-title-group"> <h1 class="tw-page-header-title">Customise Application Journey</h1> <span class="tw-page-header-subtitle">Year 7 Entry 2026</span> </div> <div class="tw-page-header-actions"> <button class="tw-btn tw-btn-secondary" type="button">Switch to Old View</button> <button class="tw-btn tw-btn-secondary" type="button">Global Settings</button> <button class="tw-btn tw-btn-primary" type="button">Create Test Application</button> </div> </div> </div> <div class="tw:mt-4 tw:text-sm tw:text-gray-600"> <code><div class="tw-page-header-actions"><button class="tw-btn tw-btn-secondary">...</button></div></code> </div> </div> <!-- ============================================================ 3. With Actions + Slot ============================================================ --> <div class="tw:border-t tw:pt-6"> <h2 class="tw-h4 tw:mb-4">3. With Actions + Slot</h2> <div class="tw-callout tw:mb-4"> <p class="tw:mb-0 tw:text-sm"> <strong>Slot:</strong> Use <code>.page-header-slot</code> for arbitrary content below the main row (e.g. filters, descriptions, badges). </p> </div> <div class="tw-page-header"> <div class="tw-page-header-main"> <a href="#" class="tw-page-header-back" aria-label="Go back"> <i class="fa-solid fa-chevron-left tw-page-header-back-icon"></i> </a> <div class="tw-page-header-title-group"> <h1 class="tw-page-header-title">Application Review</h1> <span class="tw-page-header-subtitle">Sarah Johnson</span> </div> <div class="tw-page-header-actions"> <button class="tw-btn tw-btn-outline-danger" type="button">Reject</button> <button class="tw-btn tw-btn-success" type="button">Approve</button> </div> </div> <div class="tw-page-header-slot"> <div class="tw:flex tw:items-center tw:gap-3"> <span class="tw-badge tw-badge-success-subtle">MIS Compatible</span> <span class="tw-badge tw-badge-info-subtle">Year 7</span> <span class="tw:text-body-xs tw:leading-body-xs tw:text-neutral-500">Submitted 15 March 2026</span> </div> </div> </div> <div class="tw:mt-4 tw:text-sm tw:text-gray-600"> <code><div class="tw-page-header-slot">...any content...</div></code> </div> </div> <!-- ============================================================ 4. With Breadcrumbs ============================================================ --> <div class="tw:border-t tw:pt-6"> <h2 class="tw-h4 tw:mb-4">4. With Breadcrumbs</h2> <div class="tw-callout tw:mb-4"> <p class="tw:mb-0 tw:text-sm"> <strong>Breadcrumbs:</strong> Add <code>.page-header-breadcrumb</code> above the main row to show the user's location in the hierarchy. </p> </div> <div class="tw-page-header"> <div class="tw-page-header-breadcrumb"> <nav aria-label="Breadcrumb"> <ol class="tw-breadcrumb"> <li class="tw-breadcrumb-item"> <a href="#" aria-label="Home"> <i class="fa-solid fa-house tw-breadcrumb-item-icon"></i> </a> </li> <li class="tw-breadcrumb-item"><a href="#">Admissions</a></li> <li class="tw-breadcrumb-item tw-active" aria-current="page">Phase Settings</li> </ol> </nav> </div> <div class="tw-page-header-main"> <a href="#" class="tw-page-header-back" aria-label="Go back"> <i class="fa-solid fa-chevron-left tw-page-header-back-icon"></i> </a> <div class="tw-page-header-title-group"> <h1 class="tw-page-header-title">Phase Settings</h1> <span class="tw-page-header-subtitle">Initial Application</span> </div> </div> </div> <div class="tw:mt-4 tw:text-sm tw:text-gray-600"> <code><div class="tw-page-header-breadcrumb"><nav aria-label="Breadcrumb"><ol class="tw-breadcrumb">...</ol></nav></div></code> </div> </div> <!-- ============================================================ 5. With Breadcrumbs + Actions ============================================================ --> <div class="tw:border-t tw:pt-6"> <h2 class="tw-h4 tw:mb-4">5. With Breadcrumbs + Actions</h2> <div class="tw-callout tw:mb-4"> <p class="tw:mb-0 tw:text-sm"> <strong>Breadcrumbs + Actions:</strong> Common configuration for settings and detail pages where the user needs both context and available actions. </p> </div> <div class="tw-page-header"> <div class="tw-page-header-breadcrumb"> <nav aria-label="Breadcrumb"> <ol class="tw-breadcrumb"> <li class="tw-breadcrumb-item"> <a href="#" aria-label="Home"> <i class="fa-solid fa-house tw-breadcrumb-item-icon"></i> </a> </li> <li class="tw-breadcrumb-item"><a href="#">Admissions</a></li> <li class="tw-breadcrumb-item"><a href="#">Year 7 Entry 2026</a></li> <li class="tw-breadcrumb-item tw-active" aria-current="page">Application Journey</li> </ol> </nav> </div> <div class="tw-page-header-main"> <a href="#" class="tw-page-header-back" aria-label="Go back"> <i class="fa-solid fa-chevron-left tw-page-header-back-icon"></i> </a> <div class="tw-page-header-title-group"> <h1 class="tw-page-header-title">Customise Application Journey</h1> <span class="tw-page-header-subtitle">Year 7 Entry 2026</span> </div> <div class="tw-page-header-actions"> <button class="tw-btn tw-btn-secondary" type="button">Switch to Old View</button> <button class="tw-btn tw-btn-secondary" type="button">Global Settings</button> <button class="tw-btn tw-btn-primary" type="button">Create Test Application</button> </div> </div> </div> <div class="tw:mt-4 tw:text-sm tw:text-gray-600"> <code>Combine .page-header-breadcrumb + .page-header-main + .page-header-actions</code> </div> </div> <!-- ============================================================ 6. With Breadcrumbs + Actions + Slot ============================================================ --> <div class="tw:border-t tw:pt-6"> <h2 class="tw-h4 tw:mb-4">6. With Breadcrumbs + Actions + Slot</h2> <div class="tw-callout tw:mb-4"> <p class="tw:mb-0 tw:text-sm"> <strong>Full without tabs:</strong> Breadcrumbs, back, title, subtitle, actions, and a slot area below. </p> </div> <div class="tw-page-header"> <div class="tw-page-header-breadcrumb"> <nav aria-label="Breadcrumb"> <ol class="tw-breadcrumb"> <li class="tw-breadcrumb-item"> <a href="#" aria-label="Home"> <i class="fa-solid fa-house tw-breadcrumb-item-icon"></i> </a> </li> <li class="tw-breadcrumb-item"><a href="#">Admissions</a></li> <li class="tw-breadcrumb-item tw-active" aria-current="page">Applicant Detail</li> </ol> </nav> </div> <div class="tw-page-header-main"> <a href="#" class="tw-page-header-back" aria-label="Go back"> <i class="fa-solid fa-chevron-left tw-page-header-back-icon"></i> </a> <div class="tw-page-header-title-group"> <h1 class="tw-page-header-title">Emily Thompson</h1> <span class="tw-page-header-subtitle">Year 7 Entry 2026</span> </div> <div class="tw-page-header-actions"> <button class="tw-btn tw-btn-outline-secondary" type="button">Export PDF</button> <button class="tw-btn tw-btn-primary" type="button">Send Decision</button> </div> </div> <div class="tw-page-header-slot"> <div class="tw:flex tw:items-center tw:gap-3"> <span class="tw-badge tw-badge-warning-subtle">Pending Review</span> <span class="tw-badge tw-badge-secondary-subtle">Internal</span> <span class="tw:text-body-xs tw:leading-body-xs tw:text-neutral-500">Applied: 2 February 2026</span> </div> </div> </div> <div class="tw:mt-4 tw:text-sm tw:text-gray-600"> <code>Combine all optional rows: .page-header-breadcrumb + .page-header-main + .page-header-slot</code> </div> </div> <!-- ============================================================ 7. With Tabs ============================================================ --> <div class="tw:border-t tw:pt-6"> <h2 class="tw-h4 tw:mb-4">7. With Tabs</h2> <div class="tw-callout tw:mb-4"> <p class="tw:mb-0 tw:text-sm"> <strong>Tabs:</strong> Wrap the existing <code>.tabs</code> component inside <code>.page-header-tabs</code>. The bottom border of the page header is automatically removed when tabs are present (via <code>:has()</code>). </p> </div> <div class="tw-page-header"> <div class="tw-page-header-main"> <a href="#" class="tw-page-header-back" aria-label="Go back"> <i class="fa-solid fa-chevron-left tw-page-header-back-icon"></i> </a> <div class="tw-page-header-title-group"> <h1 class="tw-page-header-title">Application Journey</h1> <span class="tw-page-header-subtitle">Year 7 Entry 2026</span> </div> </div> <div class="tw-page-header-tabs"> <div class="tw-tabs" role="tablist"> <button class="tw-tab tw-active" role="tab" aria-selected="true" type="button">Overview</button> <button class="tw-tab" role="tab" aria-selected="false" type="button">Phases</button> <button class="tw-tab" role="tab" aria-selected="false" type="button">Forms</button> <button class="tw-tab" role="tab" aria-selected="false" type="button">Communications</button> </div> </div> </div> <div class="tw:mt-4 tw:text-sm tw:text-gray-600"> <code><div class="tw-page-header-tabs"><div class="tw-tabs" role="tablist"><button class="tw-tab tw-active">...</button></div></div></code> </div> </div> <!-- ============================================================ 8. With Breadcrumbs + Tabs ============================================================ --> <div class="tw:border-t tw:pt-6"> <h2 class="tw-h4 tw:mb-4">8. With Breadcrumbs + Tabs</h2> <div class="tw-callout tw:mb-4"> <p class="tw:mb-0 tw:text-sm"> <strong>Breadcrumbs + Tabs:</strong> Breadcrumbs above the title row, tabs below. Both rows are independently optional. </p> </div> <div class="tw-page-header"> <div class="tw-page-header-breadcrumb"> <nav aria-label="Breadcrumb"> <ol class="tw-breadcrumb"> <li class="tw-breadcrumb-item"> <a href="#" aria-label="Home"> <i class="fa-solid fa-house tw-breadcrumb-item-icon"></i> </a> </li> <li class="tw-breadcrumb-item"><a href="#">Admissions</a></li> <li class="tw-breadcrumb-item tw-active" aria-current="page">Application Journey</li> </ol> </nav> </div> <div class="tw-page-header-main"> <a href="#" class="tw-page-header-back" aria-label="Go back"> <i class="fa-solid fa-chevron-left tw-page-header-back-icon"></i> </a> <div class="tw-page-header-title-group"> <h1 class="tw-page-header-title">Application Journey</h1> <span class="tw-page-header-subtitle">Year 7 Entry 2026</span> </div> </div> <div class="tw-page-header-tabs"> <div class="tw-tabs" role="tablist"> <button class="tw-tab tw-active" role="tab" aria-selected="true" type="button">Overview</button> <button class="tw-tab" role="tab" aria-selected="false" type="button">Phases</button> <button class="tw-tab" role="tab" aria-selected="false" type="button">Forms</button> </div> </div> </div> <div class="tw:mt-4 tw:text-sm tw:text-gray-600"> <code>Combine .page-header-breadcrumb + .page-header-main + .page-header-tabs</code> </div> </div> <!-- ============================================================ 9. Full Variant (Breadcrumbs + Tabs + Actions) ============================================================ --> <div class="tw:border-t tw:pt-6"> <h2 class="tw-h4 tw:mb-4">9. Full Variant (Breadcrumbs + Tabs + Actions)</h2> <div class="tw-callout tw:mb-4"> <p class="tw:mb-0 tw:text-sm"> <strong>Full:</strong> All optional rows combined — breadcrumbs, back, title + subtitle, actions, and tabs. This is the maximum configuration. </p> </div> <div class="tw-page-header"> <div class="tw-page-header-breadcrumb"> <nav aria-label="Breadcrumb"> <ol class="tw-breadcrumb"> <li class="tw-breadcrumb-item"> <a href="#" aria-label="Home"> <i class="fa-solid fa-house tw-breadcrumb-item-icon"></i> </a> </li> <li class="tw-breadcrumb-item"><a href="#">Admissions</a></li> <li class="tw-breadcrumb-item"><a href="#">Year 7 Entry 2026</a></li> <li class="tw-breadcrumb-item tw-active" aria-current="page">Application Journey</li> </ol> </nav> </div> <div class="tw-page-header-main"> <a href="#" class="tw-page-header-back" aria-label="Go back"> <i class="fa-solid fa-chevron-left tw-page-header-back-icon"></i> </a> <div class="tw-page-header-title-group"> <h1 class="tw-page-header-title">Customise Application Journey</h1> <span class="tw-page-header-subtitle">Year 7 Entry 2026</span> </div> <div class="tw-page-header-actions"> <button class="tw-btn tw-btn-secondary" type="button">Switch to Old View</button> <button class="tw-btn tw-btn-secondary" type="button">Global Settings</button> <button class="tw-btn tw-btn-primary" type="button">Create Test Application</button> </div> </div> <div class="tw-page-header-tabs"> <div class="tw-tabs" role="tablist"> <button class="tw-tab tw-active" role="tab" aria-selected="true" type="button">Overview</button> <button class="tw-tab" role="tab" aria-selected="false" type="button">Phases</button> <button class="tw-tab" role="tab" aria-selected="false" type="button">Forms</button> <button class="tw-tab" role="tab" aria-selected="false" type="button">Communications</button> <button class="tw-tab" role="tab" aria-selected="false" type="button">Settings</button> </div> </div> </div> <div class="tw:mt-4 tw:text-sm tw:text-gray-600"> <code>All rows: .page-header-breadcrumb + .page-header-main (with .page-header-actions) + .page-header-tabs</code> </div> </div> <!-- ============================================================ 10. No Back Arrow ============================================================ --> <div class="tw:border-t tw:pt-6"> <h2 class="tw-h4 tw:mb-4">10. No Back Arrow</h2> <div class="tw-callout tw:mb-4"> <p class="tw:mb-0 tw:text-sm"> <strong>No back:</strong> The back arrow is optional. Omit <code>.page-header-back</code> when the page is a top-level destination (e.g. dashboard, home). </p> </div> <div class="tw-page-header"> <div class="tw-page-header-main"> <div class="tw-page-header-title-group"> <h1 class="tw-page-header-title">Dashboard</h1> <span class="tw-page-header-subtitle">Admissions Overview</span> </div> <div class="tw-page-header-actions"> <button class="tw-btn tw-btn-outline-secondary" type="button">Export</button> <button class="tw-btn tw-btn-primary" type="button">New Application Form</button> </div> </div> <div class="tw-page-header-slot"> <p class="tw:text-body-s tw:leading-body-s tw:text-neutral-600 tw:m-0"> Showing data for the current academic year. Last updated 5 minutes ago. </p> </div> </div> <div class="tw:mt-4 tw:text-sm tw:text-gray-600"> <code>Simply omit the <a class="tw-page-header-back"> element when no back navigation is needed.</code> </div> </div></div>No notes provided.
No params configured.