Skip to content

Commit 23ccb71

Browse files
committed
Adds missing H1s to settings pages
1 parent 5f58094 commit 23ccb71

File tree

4 files changed

+9
-0
lines changed

4 files changed

+9
-0
lines changed

resources/js/pages/settings/appearance.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ export default function Appearance() {
2020
<AppLayout breadcrumbs={breadcrumbs}>
2121
<Head title="Appearance settings" />
2222

23+
<h1 className="sr-only">Appearance Settings</h1>
24+
2325
<SettingsLayout>
2426
<div className="space-y-6">
2527
<HeadingSmall

resources/js/pages/settings/password.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ export default function Password() {
2828
<AppLayout breadcrumbs={breadcrumbs}>
2929
<Head title="Password settings" />
3030

31+
<h1 className="sr-only">Password Settings</h1>
32+
3133
<SettingsLayout>
3234
<div className="space-y-6">
3335
<HeadingSmall

resources/js/pages/settings/profile.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ export default function Profile({
3434
<AppLayout breadcrumbs={breadcrumbs}>
3535
<Head title="Profile settings" />
3636

37+
<h1 className="sr-only">Profile Settings</h1>
38+
3739
<SettingsLayout>
3840
<div className="space-y-6">
3941
<HeadingSmall

resources/js/pages/settings/two-factor.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ export default function TwoFactor({
4343
return (
4444
<AppLayout breadcrumbs={breadcrumbs}>
4545
<Head title="Two-Factor Authentication" />
46+
47+
<h1 className="sr-only">Two-Factor Authentication Settings</h1>
48+
4649
<SettingsLayout>
4750
<div className="space-y-6">
4851
<HeadingSmall

0 commit comments

Comments
 (0)