From 5a90de49bf5b8568c6a2320beba845c9c90ebfc5 Mon Sep 17 00:00:00 2001 From: mmattbtw Date: Fri, 4 Aug 2023 18:33:43 -0500 Subject: [PATCH] tts.monster --- README.md | 4 +++- apps/frontend/i18n/en-US.json | 1 + apps/frontend/src/components/BetaBanner.tsx | 5 +++++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 83d6d125..bcd2f57d 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,9 @@ The first 100% **free** AI TTS service for Twitch. -Currently in development. Available for beta usage: https://solrock.mmattDonk.com +## The official instance of Solrock is shutting down. + +The next best thing is [TTS.monster](https://tts.monster/?ref=solrock) ## Project Structure diff --git a/apps/frontend/i18n/en-US.json b/apps/frontend/i18n/en-US.json index 28ab3644..49aab2e7 100644 --- a/apps/frontend/i18n/en-US.json +++ b/apps/frontend/i18n/en-US.json @@ -3,6 +3,7 @@ "header": "This is a BETA website. Please report bugs and get help in the mmattDonk Discord server." }, "shutdown": "Solrock is shutting down on 10/1/2023, read the announcement here.", + "ttsmonster": "The best alternative to Solrock is TTS.Monster!", "loading": "Loading...", "close": "Close", "open": "Open", diff --git a/apps/frontend/src/components/BetaBanner.tsx b/apps/frontend/src/components/BetaBanner.tsx index e7b737b4..cef72712 100644 --- a/apps/frontend/src/components/BetaBanner.tsx +++ b/apps/frontend/src/components/BetaBanner.tsx @@ -18,6 +18,11 @@ export default function BetaBanner() { discordLink: (children) => {children}, })} + + {t.rich('ttsmonster', { + ttsmonsterLink: (children) => {children}, + })} + ); }