2023-07-19 21:31:30 +02:00
|
|
|
---
|
2023-08-22 16:09:01 +02: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';
|
2023-07-19 21:31:30 +02:00
|
|
|
---
|
|
|
|
|
|
2023-08-22 16:09:01 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2023-08-29 11:59:32 +02:00
|
|
|
<div class="flex flex-col fixed w-screen p-5">
|
2023-08-22 16:09:01 +02:00
|
|
|
<Header title={SITE_TITLE} />
|
2023-08-29 11:59:32 +02:00
|
|
|
<main class="flex flex-col justify-center items-left mx-auto mt-8">
|
|
|
|
|
<h1 class="text-2xl">About me</h1>
|
|
|
|
|
<p>Some information about me & stuff I like</p>
|
|
|
|
|
<div class="mt-4">
|
|
|
|
|
<a href="/tools">link to tools</a>
|
|
|
|
|
</div>
|
2023-08-22 16:09:01 +02:00
|
|
|
</main>
|
|
|
|
|
<Footer />
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|