28 lines
658 B
Text
28 lines
658 B
Text
|
---
|
||
|
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>
|