make stuff
This commit is contained in:
parent
24926411be
commit
7cb31ff97f
4 changed files with 35 additions and 6 deletions
|
@ -10,6 +10,9 @@
|
||||||
<a href="/services">services</a>
|
<a href="/services">services</a>
|
||||||
</div>
|
</div>
|
||||||
<style>
|
<style>
|
||||||
|
.nav {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
a {
|
a {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,5 +24,6 @@ const { title } = Astro.props;
|
||||||
html {
|
html {
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
background: #101010;
|
background: #101010;
|
||||||
|
color: white;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
30
src/pages/home.astro
Normal file
30
src/pages/home.astro
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
---
|
||||||
|
import Nav from "../components/nav.astro";
|
||||||
|
import Layout from "../layouts/Layout.astro";
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title="sako.lol - home">
|
||||||
|
<div class="top">
|
||||||
|
<Nav/>
|
||||||
|
</div>
|
||||||
|
<div class="content">
|
||||||
|
<h1>placeholder</h1>
|
||||||
|
<p> yap yap yap </p>
|
||||||
|
<p> yap yap yap </p>
|
||||||
|
<p> yap yap yap </p>
|
||||||
|
<p> yap yap yap </p>
|
||||||
|
<p> yap yap yap </p>
|
||||||
|
<p> todo make this extend to the bottom regardless if theres nothing</p>
|
||||||
|
</div>
|
||||||
|
</Layout>
|
||||||
|
<style>
|
||||||
|
.top {
|
||||||
|
text-align: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.content {
|
||||||
|
background-color: #222222;
|
||||||
|
margin: auto;
|
||||||
|
max-width: 90vw;
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -6,11 +6,6 @@ import Nav from '../components/nav.astro';
|
||||||
<Layout title="sako.lol">
|
<Layout title="sako.lol">
|
||||||
<main>
|
<main>
|
||||||
<div class="center">
|
<div class="center">
|
||||||
<!-- <div class="nav">
|
|
||||||
<a href="/">home</a>
|
|
||||||
<a href="blog">blog</a>
|
|
||||||
<a href="services">services</a>
|
|
||||||
</div> -->
|
|
||||||
<Nav/>
|
<Nav/>
|
||||||
<div>
|
<div>
|
||||||
</main>
|
</main>
|
||||||
|
|
Loading…
Reference in a new issue