blueskychan.dev/public/random.js
2025-04-23 23:16:27 +07:00

17 lines
582 B
JavaScript

console.log("What are you doing here? ;-;")
console.log(
"Tips: If you add stright=true to the URL, the font will change to Roboto, easier to read :3",
)
console.log("Sometimes this world is great, but sometimes it sucks.... :c")
const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms))
sleep(2500).then(() => {
console.log(
"%cI 🫶 @ahenyao! (so much) <3",
"color: #FF69B4; font-size: 20px; font-weight: bold;",
)
console.log(
"%cAlso check out my gallery too! :3 (/gallery)",
"color: #FF69B4; font-size: 20px; font-weight: bold;",
)
})