Skip to content
Snippets Groups Projects
Commit a9fc542d authored by Trirst's avatar Trirst
Browse files

Tips

parent eaaca080
Branches master
No related tags found
No related merge requests found
<script>
function getRandomInt(max) {
return Math.floor(Math.random() * max);
}
let tips = [
"When searching images by tags, delimit each tag by a whitespace to match them inclusively",
"Good luck!",
"Stay strong!",
"A page includes at maximum 63 images",
];
</script>
<svelte:head> <svelte:head>
<title>Home</title> <title>Home</title>
</svelte:head> </svelte:head>
<div class="min-h-screen flex justify-center items-center text-2xl">
<strong class="mr-2">Tip:</strong>
{tips[getRandomInt(tips.length)]}
</div>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment