diff --git a/src/components/About.tsx b/src/components/About.tsx index 78f82d4..3936fa8 100644 --- a/src/components/About.tsx +++ b/src/components/About.tsx @@ -27,6 +27,7 @@ const About: FC = ({ isModal }) => { {ticker.information.facebook && } {ticker.information.telegram && } {ticker.information.mastodon && } + {ticker.information.bluesky && } diff --git a/src/components/DescriptionItem.tsx b/src/components/DescriptionItem.tsx index f4dc82c..6d28948 100644 --- a/src/components/DescriptionItem.tsx +++ b/src/components/DescriptionItem.tsx @@ -80,6 +80,17 @@ const DescriptionItem: FC = props => { ) + case DescriptionTypes.Bluesky: + return ( + + + + + {props.info.replace('https://', '')} + + + + ) default: return null } diff --git a/src/lib/types.ts b/src/lib/types.ts index 804b8fb..9809238 100644 --- a/src/lib/types.ts +++ b/src/lib/types.ts @@ -15,6 +15,7 @@ type TickerInformation = { twitter: string url: string mastodon: string + bluesky: string } export type Settings = { @@ -40,6 +41,7 @@ export enum DescriptionTypes { Twitter = 'TWITTER', Telegram = 'TELEGRAM', Mastodon = 'MASTODON', + Bluesky = 'BLUESKY', } export type Message = {