fix tag template title
All checks were successful
Deploy Blog / deploy (push) Successful in 2m20s

This commit is contained in:
Thomas Bishop 2026-01-20 17:12:37 +00:00
parent ebb00b9bd7
commit 1bc7fc2279
2 changed files with 62 additions and 64 deletions

View file

@ -24,8 +24,8 @@ const HomePage = () => {
</div>
</h1>
<p className="text-center sm:text-left md:text-left text-muted font-medium">
Another software engineer with a blog. This is my technical
scrapbook and digital garden.
A wizard who goes to bed early. This is my technical scrapbook
and digital garden.
</p>
</div>
</div>

View file

@ -12,10 +12,8 @@ const TagTemplate = () => {
return (
<MainTemplate>
<div className="container mx-auto p-4">
<h1 className="h1 text-3xl text-[#b8bb26]! font-bold">{`Posts tagged: #${tag}`}</h1>
</div>
<PostListing title={null} posts={filteredPosts} />
<div className="container mx-auto p-4"></div>
<PostListing title={`Posts tagged: #${tag}`} posts={filteredPosts} />
</MainTemplate>
)
}