make stuff

This commit is contained in:
Sakooooo 2024-12-01 12:40:41 +04:00
parent 24926411be
commit 7cb31ff97f
Signed by: sako
GPG key ID: FE52FD65B76E4751
4 changed files with 35 additions and 6 deletions

View file

@ -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;
} }

View file

@ -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
View 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>

View file

@ -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>