Skip to content

Commit

Permalink
removed icons
Browse files Browse the repository at this point in the history
  • Loading branch information
jhilker98 committed Mar 12, 2024
1 parent 1dfdd5d commit 4a13422
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
4 changes: 0 additions & 4 deletions src/components/Pagination.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
// component imports
import Backward20Solid from "~icons/heroicons/backward-20-solid";
import Forward20Solid from "~icons/heroicons/forward-20-solid";
const { prevUrl, nextUrl } = Astro.props;
---

Expand All @@ -13,7 +11,6 @@ const { prevUrl, nextUrl } = Astro.props;
<a
href={prevUrl}
class="align-baseline p-2 bg-branding-navy text-white uppercase rounded justify-start mr-auto ml-0">
<Backward20Solid class="inline w-5 h-5 mb-1" />
Previous
</a>
)
Expand All @@ -25,7 +22,6 @@ const { prevUrl, nextUrl } = Astro.props;
href={nextUrl}
class="align-baseline p-2 bg-branding-navy text-white uppercase rounded justify-end ml-auto mr-0">
Next
<Forward20Solid class="inline w-5 h-5 mb-1" />
</a>
)
}
Expand Down
8 changes: 0 additions & 8 deletions src/components/blog/PostHeader.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ interface Props {
}
import { formatPostDate, hashtagPostTags, slugifyUrl } from "@lib/utils";
import Tag20Solid from "~icons/heroicons/tag-20-solid";
import MdiCalendar from "~icons/mdi/mdi-calendar";
import MdiFolderOpen from "~icons/mdi/mdi-folder-open";
const {
title,
pubDate,
Expand All @@ -23,9 +20,6 @@ const postTags = hashtagPostTags(tags);

<header class="align-baseline">
<h1 class="mt-1 text-wrap-balance">{title}</h1>
<MdiCalendar
class="w-5 mb-1 mr-1 inline-block dark:fill-neutral-300 fill-neutral-700"
/>
<span class="font-bold mr-1 dark:text-neutral-300 text-neutral-700"
>Posted:</span
>
Expand All @@ -35,7 +29,6 @@ const postTags = hashtagPostTags(tags);
{
lastModDate.getTime() > pubDate.getTime() ? (
<div class="inline ml-8">
<MdiCalendar class="w-5 mb-1 inline-block" />
<span class="font-bold">Last Updated:</span>
<time class="inline">{formatPostDate(lastModDate)}</time>
</div>
Expand All @@ -45,7 +38,6 @@ const postTags = hashtagPostTags(tags);
}

<div class="block">
<Tag20Solid class="h-5 w-5 mr-1 inline mb-1" />
<strong class="mr-1 dark:text-neutral-300 text-neutral-700">Tags:</strong>
{
postTags.map((tag, index) => {
Expand Down

0 comments on commit 4a13422

Please sign in to comment.