polsevev.dev/src/pages/index.astro

50 lines
961 B
Text
Raw Normal View History

2024-08-02 20:52:09 +00:00
---
2024-08-23 18:36:08 +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";
2024-08-02 20:52:09 +00:00
---
<!doctype html>
<html lang="en">
2024-08-23 18:36:08 +00:00
<head>
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
<style>
body {
text-align: center;
}
main {
}
main left,
right {
margin: 0.2em;
padding: 0.5em;
}
left {
max-width: 600px;
text-align: center;
}
right {
max-width: 400px;
text-align: center;
}
box {
display: flex;
}
</style>
</head>
<body>
<Header />
<main>
<h1>Rolf Glomsrud</h1>
<img src="images/self.png" />
<p>
This site is a continual WIP, and this is just an alpha of what i hope
it will become :)
</p>
</main>
<Footer />
</body>
2024-08-02 20:52:09 +00:00
</html>