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},
+ })}
+
);
}