remove more astro elements

This commit is contained in:
2025-02-22 15:40:43 -05:00
parent dc082b0ddf
commit ac88ebc83a
2 changed files with 0 additions and 65 deletions

View File

@ -1,50 +0,0 @@
---
import Metas from "../components/metas.astro"
import Header from "../components/header.astro"
import Footer from "../components/footer.astro"
---
<!doctype html>
<html lang="en">
<head>
<Metas/>
<link rel="icon" type="image/png" href="/logo.png"/>
<title>rhpidfyre.io</title>
</head>
<body>
<Header/>
<slot/>
<Footer/>
</body>
</html>
<style is:global lang="scss">
@forward "../scss/fonts";
:root {
color-scheme: dark;
--body-background-color: rgb(0,0,0);
--hf-button-hover-color: rgb(255,255,255);
}
::selection {
background-color: rgb(255,255,255);
color: rgb(0,0,0);
}
body {
box-sizing: border-box;
margin: 0;
overflow: hidden;
background-color: var(--body-background-color);
}
button {
background-color: transparent;
border: 0;
}
a {
color: white;
cursor: unset;
&:hover, &:active, &:link { text-decoration: none; }
}
</style>

View File

@ -1,15 +0,0 @@
---
import Webpage from '../layouts/Webpage.astro';
import Motd from '../components/terminal/motd.astro';
---
<Webpage>
<main>
<Motd/>
<script src="../components/client/terminal.ts"></script>
</main>
</Webpage>
<style lang="scss" is:global>
</style>