Skip to content

Commit

Permalink
Update styles
Browse files Browse the repository at this point in the history
  • Loading branch information
derekmbrown committed Dec 24, 2024
1 parent 9802f30 commit e76e851
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@ allNotes.sort((a, b) => Date.parse(b.data.pubDate) - Date.parse(a.data.pubDate))
>
<div class="flex justify-between mb-6 items-center">
<div class="md:text-4xl text-3xl font-bold">Latest Notes</div>
<div class="text-lg bg-[#1E262F] py-3 px-5 rounded-lg">
<a href="tags/note">View all</a>
</div>
<a href="tags/note">
<div class="text-lg bg-[#1E262F] py-3 px-5 rounded-lg">
View all
</div>
</a>
</div>

{allNotes.slice(0, 5).map((note) =>
Expand Down

0 comments on commit e76e851

Please sign in to comment.