polsevev.dev/src/pages/index.astro

77 lines
1.2 KiB
Text
Raw Normal View History

2024-08-02 20:52:09 +00:00
---
import BaseHead from '../components/BaseHead.astro';
import Header from '../components/Header.astro';
import Footer from '../components/Footer.astro';
import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
---
<!doctype html>
<html lang="en">
<head>
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
2024-08-04 19:19:54 +00:00
<style>
body{
text-align: center;
}
main {
width: 75%;
}
main left,right{
margin: 0.2em;
padding: 0.5em;
}
left{
width: 50%;
text-align: center;
}
right{
width: 50%;
text-align: center;
}
#column{
float:left;
}
box{
display: flex;
}
box left,right{
border-color: white;
border-width: 0.2em;
border-style: solid;
border-radius: 1em;
margin: 0.2em;
padding: 0.5em;
}
</style>
2024-08-02 20:52:09 +00:00
</head>
<body>
<Header />
2024-08-04 19:19:54 +00:00
2024-08-02 20:52:09 +00:00
<main>
2024-08-03 23:30:07 +00:00
<h1>Yo! Welcome to my humble site</h1>
2024-08-04 19:19:54 +00:00
<box>
<left class="column">
<p>
This site is a continual WIP, and this is just an alpha of what i hope it will become :)
</p>
<p>
Go checkout the description of my homelab!
</p>
</left>
<right class="column">
<img src="public/images/self.png"/>
</right >
</box>
2024-08-02 20:52:09 +00:00
</main>
<Footer />
</body>
</html>