Skip to content

Commit a0701fa

Browse files
committed
revert: 0xPARC RSS feed
https://rss.app service no longer serving feed
1 parent 579dbbb commit a0701fa

File tree

3 files changed

+2
-18
lines changed

3 files changed

+2
-18
lines changed

public/images/0xparc-logo.svg

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/lib/constants.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,6 @@ export const RSS_DISPLAY_COUNT = 6
186186

187187
export const VITALIK_FEED = "https://vitalik.eth.limo/feed.xml"
188188
export const SOLIDITY_FEED = "https://soliditylang.org/feed.xml"
189-
export const _0X_PARC_FEED = "https://rss.app/feeds/cWXGYts0ZM8C3F6t.xml"
190189

191190
export const COMMUNITY_BLOGS: CommunityBlog[] = [
192191
{
@@ -206,8 +205,8 @@ export const COMMUNITY_BLOGS: CommunityBlog[] = [
206205
feed: "https://raw.githubusercontent.com/eth-educators/github-actions/refs/heads/main/_data/blog_data.xml",
207206
},
208207
{
208+
name: "0xPARC",
209209
href: "https://0xparc.org/blog",
210-
feed: _0X_PARC_FEED,
211210
},
212211
{
213212
href: "https://www.attestant.io/posts/",

src/lib/utils/rss.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { _0X_PARC_FEED, SOLIDITY_FEED, VITALIK_FEED } from "../constants"
1+
import { SOLIDITY_FEED, VITALIK_FEED } from "../constants"
22
import type { RSSItem } from "../types"
33

44
export const sortByPubDate = (items: RSSItem[]) =>
@@ -27,11 +27,6 @@ export const postProcess = (rssItems: RSSItem[]) =>
2727
...item,
2828
imgSrc: "/images/solidity-banner.png",
2929
}
30-
case _0X_PARC_FEED:
31-
return {
32-
...item,
33-
imgSrc: "/images/0xparc-logo.svg",
34-
}
3530
default:
3631
return item
3732
}

0 commit comments

Comments
 (0)