ssshhh
This commit is contained in:
parent
45cccc5772
commit
746e2c7915
3 changed files with 21 additions and 0 deletions
5
astro/public/scripts/sn.js
Normal file
5
astro/public/scripts/sn.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
document.addEventListener("keydown", (event) => {
|
||||
if (event.ctrlKey && event.key === "`") {
|
||||
window.location.replace("/sn");
|
||||
}
|
||||
});
|
|
@ -26,6 +26,7 @@ const { title } = Astro.props;
|
|||
<NormalScripts />
|
||||
<script is:inline src="/scripts/fuckchrome.js"></script>
|
||||
<script is:inline src="/scripts/sga.js"></script>
|
||||
<script is:inline src="/scripts/sn.js"></script>
|
||||
<audio
|
||||
id="clickSound"
|
||||
src="/assets/sounds/ui/zapsplat_multimedia_button_click_004_68776.mp3">
|
||||
|
|
15
astro/src/pages/sn.astro
Normal file
15
astro/src/pages/sn.astro
Normal file
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
import Layout from "../layouts/Layout.astro";
|
||||
import About from "../components/main-page/about.astro"
|
||||
import Contact from "../components/main-page/contact.astro"
|
||||
import SillyWidgets from "../components/main-page/silly-widgets.astro"
|
||||
---
|
||||
|
||||
<Layout title="nelle.observer">
|
||||
<main>
|
||||
<!-- Title Area -->
|
||||
<section class="content" style="text-align:center">
|
||||
<span class="glitch">NL-044D-3B71D280</span>
|
||||
</section>
|
||||
</main>
|
||||
</Layout>
|
Loading…
Reference in a new issue