fihtus by ryeones

More newsletters from the team behind fihtus by ryeones

2
Search
fihtus by ryeones
euscape by soffcopy
  • euscape by soffcopy

    euscape by soffcopy

    a space for raw, real reflections and creative moments. inspiring thoughts, stories, and connections—join us 🦋

    mental health
    mindfulness
    self
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);