Skip to content

Commit ed952ab

Browse files
authored
fix: remove-rss-for-now (#359)
1 parent 67b26bb commit ed952ab

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

src/components/Footer.astro

+6-5
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ import { socialLinks } from "../data/socialLinks";
55
66
const today = new Date();
77
8-
const links = socialLinks.concat({
9-
label: "RSS",
10-
url: "/rss.xml",
11-
icon: "mdi:rss-feed",
12-
});
8+
const links = socialLinks;
9+
// .concat({
10+
// label: "RSS",
11+
// url: "/rss.xml",
12+
// icon: "mdi:rss-feed",
13+
// });
1314
---
1415

1516
<footer>

src/components/Header.astro

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,13 +96,13 @@ const links = [
9696
>
9797
<IconSun />
9898
</button>
99-
<a
99+
<!-- <a
100100
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"
101101
aria-label="RSS Feed"
102102
href="/rss.xml"
103103
>
104104
<IconRSS />
105-
</a>
105+
</a> -->
106106
<a
107107
href={githubUrl}
108108
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"

0 commit comments

Comments
 (0)