style: change text

This commit is contained in:
2026-06-02 04:43:09 -03:00
parent 673aabce50
commit f1ab2b692d
@@ -29,7 +29,7 @@ export default function FinaleText() {
const interval = setInterval(() => {
if (Math.random() > 0.9) return;
const baseText = "the deal has been sealed";
const baseText = "bwaaaaaaaaa";
const corrupted = baseText
.split("")
.map((char) => (Math.random() > 0.98 ? BLOCKS[Math.floor(Math.random() * BLOCKS.length)] : char))