The weeb for the next gen discord boat - Wamellow wamellow.com
bot discord
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

add tts pricing

Luna b3af2ecf f2072106

+9 -3
+8 -2
app/(home)/premium/page.tsx
··· 33 33 { title: "Price", free: "€0 /forever", premium: "€4 /month" }, 34 34 35 35 { title: "Your Benefits", icon: <HiUser /> }, 36 + { title: "Text to Speech", free: Infinity, premium: Infinity, unit: "chars /month" }, 36 37 { title: "TTS Translations", free: 10_000, premium: 100_000, unit: "chars /month" }, 37 38 { title: "Bypass voting", free: false, premium: true, tooltip: <OtherBotsTooltip /> }, 38 39 { title: "Bypass passport", free: false, premium: true }, ··· 241 242 if (is === null) return <BsQuestionLg className="text-orange-400 dark:text-orange-600 w-6 h-6" title="To be discussed" />; 242 243 } 243 244 244 - if (is === Infinity) return <IoMdInfinite className="w-7 h-7" title="Infinite" />; 245 - if (typeof is === "number") return <>{is.toLocaleString()} <span className="text-sm text-muted-foreground">{unit}</span></>; 245 + if (typeof is === "number") { 246 + return (<> 247 + {is === Infinity ? <IoMdInfinite className="w-7 h-7" title="Infinite" /> : is.toLocaleString()} 248 + <span className="text-sm text-muted-foreground ml-1">{unit}</span> 249 + </>); 250 + } 251 + 246 252 return is; 247 253 } 248 254
+1 -1
app/(home)/status/page.tsx
··· 6 6 import { Node } from "./node.component"; 7 7 import { Side } from "./side.component"; 8 8 9 - export const revalidate = 60; 9 + export const revalidate = 0; 10 10 11 11 export default async function Home() { 12 12 const status = await getStatus();