more stuffs

This commit is contained in:
nin0 2024-07-29 08:07:09 -04:00
parent b78172476f
commit afc2b61576
3 changed files with 39 additions and 1 deletions

View file

@ -1,5 +1,7 @@
---
const nuclearLaunchCodes = "below"
// this will never be revealed :meowlien:
const actualLaunchCodes = ["54", "29", "69", "19", "11", "234"]
---
<html lang="en">
@ -14,5 +16,8 @@
<h1>Astro 2</h1>
<a href="/about">second page idk</a>
<a href="/blog">Cool blog</a>
<p>The nukes are {nuclearLaunchCodes}</p>
<p>The actual code is {actualLaunchCodes.map((code) => <pre>{code}</pre> )}</p>
{actualLaunchCodes.length >= 6 && <p>Enough codes to obliterate humanity</p>}
</body>
</html>