@@ -2,6 +2,7 @@ import { CgIndieHackers } from 'react-icons/cg'
22import { FaDev , FaFreeCodeCamp , FaMediumM , FaReddit } from 'react-icons/fa'
33import { HiSparkles , HiTicket } from 'react-icons/hi'
44import { SiGithub , SiProducthunt , SiYcombinator } from 'react-icons/si'
5+ import HackernoonIcon from 'src/assets/icon_hackernoon.jpeg'
56import HashNodeIcon from 'src/assets/icon_hashnode.png'
67import LobstersIcon from 'src/assets/icon_lobsters.png'
78import { AICard } from 'src/features/cards/components/aiCard'
@@ -18,6 +19,7 @@ const { IndiehackersCard } = lazyImport(() => import('src/features/cards'), 'Ind
1819const { LobstersCard } = lazyImport ( ( ) => import ( 'src/features/cards' ) , 'LobstersCard' )
1920const { ProductHuntCard } = lazyImport ( ( ) => import ( 'src/features/cards' ) , 'ProductHuntCard' )
2021const { RedditCard } = lazyImport ( ( ) => import ( 'src/features/cards' ) , 'RedditCard' )
22+ const { HackernoonCard } = lazyImport ( ( ) => import ( 'src/features/cards' ) , 'HackernoonCard' )
2123
2224export const SUPPORTED_CARDS : SupportedCardType [ ] = [
2325 {
@@ -128,4 +130,13 @@ export const SUPPORTED_CARDS: SupportedCardType[] = [
128130 type : 'supported' ,
129131 link : 'https://hackertab.dev/' ,
130132 } ,
133+ {
134+ value : 'hackernoon' ,
135+ analyticsTag : 'hackernoon' ,
136+ label : 'Hackernoon' ,
137+ component : HackernoonCard ,
138+ icon : < img alt = "hackernoon" src = { HackernoonIcon } /> ,
139+ link : 'https://hackernoon.com/' ,
140+ type : 'supported' ,
141+ } ,
131142]
0 commit comments