polsevev.dev/src/pages/index.astro

28 lines
658 B
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} />
</head>
<body>
<Header />
<main>
<h1>Yo!</h1>
<p>
This is just an initial test of the Astro version of my personal website. So far, i honestly love it!
</p>
<p>
I still gotta style this though, and as a certified devops guy, that will probably not go so well
</p>
</main>
<Footer />
</body>
</html>