<aside>
</aside>
<aside> ⚠️
its sort of like a personal testimonial, or just a space for me to keep coming back to, on a cold rainy night in stoke, when i don’t feel like tending to my garden. if you feel like leaving some kind comments (or not), feel free to fill up the form!
</aside>
a personal space, built in public for sharing reflections, creative projects, and growth.
soffcopy© 2021 by ryeones is licensed under cc by-nc 4.0
built with notion, via notehost
site navigation
navigate
resources
contact
const quotes = [ '“Dream big and dare to fail.” – Norman Vaughan', '“Do one thing every day that scares you.” – Eleanor Roosevelt', '“Hustle in silence and let your success make the noise.” – Unknown', ]; const quoteElement = document.createElement('div'); quoteElement.innerText = quotes[Math.floor(Math.random() * quotes.length)]; quoteElement.style.position = 'fixed'; quoteElement.style.bottom = '20px'; quoteElement.style.left = '20px'; quoteElement.style.padding = '15px'; quoteElement.style.backgroundColor = '#333'; quoteElement.style.color = '#fff'; quoteElement.style.borderRadius = '8px'; quoteElement.style.zIndex = '1000'; document.body.appendChild(quoteElement);