polsevev.dev/src/pages/index.astro

24 lines
553 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>
2024-08-03 23:30:07 +00:00
<h1>Yo! Welcome to my humble site</h1>
2024-08-02 20:52:09 +00:00
<p>
2024-08-03 23:30:07 +00:00
This site is a continual WIP, and this is just an alpha of what i hope it will become :)
2024-08-02 20:52:09 +00:00
</p>
</main>
<Footer />
</body>
</html>