Skip to content
This repository was archived by the owner on Feb 25, 2026. It is now read-only.

Commit ed684d5

Browse files
authored
Merge pull request #649 from filamentphp/fix-article-h1-title
Wrap article title in an h1 instead of div
2 parents 4380aa6 + d0351e1 commit ed684d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/views/articles/view-article.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ class="flex flex-col items-start gap-20 pt-7 transition duration-300 will-change
7272

7373
{{-- Title --}}
7474
<div class="pt-5">
75-
<div class="text-3xl font-extrabold">
75+
<h1 class="text-3xl font-extrabold">
7676
{{ $article->title }}
77-
</div>
77+
</h1>
7878
</div>
7979

8080
<div class="pt-2">

0 commit comments

Comments
 (0)