Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ import { socialLinks } from "../data/socialLinks";

const today = new Date();

const links = socialLinks.concat({
label: "RSS",
url: "/rss.xml",
icon: "mdi:rss-feed",
});
const links = socialLinks;
// .concat({
// label: "RSS",
// url: "/rss.xml",
// icon: "mdi:rss-feed",
// });
---

<footer>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,13 @@ const links = [
>
<IconSun />
</button>
<a
<!-- <a
class="text-gray-500 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-700 rounded-lg text-sm p-2.5 inline-flex items-center"
aria-label="RSS Feed"
href="/rss.xml"
>
<IconRSS />
</a>
</a> -->
<a
href={githubUrl}
class="inline-block text-gray-500 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-700 rounded-lg text-sm p-2.5"
Expand Down