2023-06-01 17:18:57 +02:00
|
|
|
---
|
2023-07-16 17:53:28 +02:00
|
|
|
const messages = ['Hi', 'Hello', 'Hey', 'Welcome', 'Ciao', 'Xin chào'];
|
2023-07-16 18:30:33 +02:00
|
|
|
const emojis = ['🍻', '🧑💻', '👋', '😎'];
|
2023-06-10 12:24:16 +02:00
|
|
|
const randomMessage = messages[Math.floor(Math.random() * messages.length)];
|
|
|
|
|
const randomEmoji = emojis[Math.floor(Math.random() * emojis.length)];
|
2023-06-01 17:18:57 +02:00
|
|
|
---
|
|
|
|
|
|
2023-07-16 17:53:28 +02:00
|
|
|
<h1 class="documentFirstHeading">
|
2023-06-10 12:24:16 +02:00
|
|
|
{randomMessage}!
|
|
|
|
|
<span role="presentation">{randomEmoji}</span>
|
|
|
|
|
</h1>
|
2023-07-16 17:53:28 +02:00
|
|
|
<style>
|
|
|
|
|
h1.documentFirstHeading {
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
</style>
|