idk
This commit is contained in:
parent
afc2b61576
commit
daf96857f5
2 changed files with 15 additions and 1 deletions
|
@ -1,7 +1,10 @@
|
|||
---
|
||||
import "../styles/global.css";
|
||||
|
||||
const nuclearLaunchCodes = "below"
|
||||
// this will never be revealed :meowlien:
|
||||
const actualLaunchCodes = ["54", "29", "69", "19", "11", "234"]
|
||||
const nukeColors = "navy";
|
||||
---
|
||||
|
||||
<html lang="en">
|
||||
|
@ -11,13 +14,21 @@ const actualLaunchCodes = ["54", "29", "69", "19", "11", "234"]
|
|||
<meta name="viewport" content="width=device-width" />
|
||||
<meta name="generator" content={Astro.generator} />
|
||||
<title>Astro</title>
|
||||
<style define:vars={{nukeColors}}>
|
||||
h1 {
|
||||
color: blue;
|
||||
}
|
||||
#nukes {
|
||||
color: var(--nukeColors);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<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>
|
||||
<p id="nukes">The actual code is {actualLaunchCodes.map((code) => <pre>{code}</pre> )}</p>
|
||||
{actualLaunchCodes.length >= 6 && <p>Enough codes to obliterate humanity</p>}
|
||||
</body>
|
||||
</html>
|
||||
|
|
3
src/styles/global.css
Normal file
3
src/styles/global.css
Normal file
|
@ -0,0 +1,3 @@
|
|||
* {
|
||||
color: red;
|
||||
}
|
Loading…
Reference in a new issue