my website
1---
2import BaseHead from "../components/BaseHead.astro";
3import { SITE_TITLE, SITE_DESCRIPTION, AUTHOR } from "../consts";
4import Intro from "../components/Intro.astro";
5import ContactLinks from "../components/ContactLinks.astro";
6import MainContainer from "../components/MainContainer.astro";
7---
8
9<!doctype html>
10<html lang="en">
11 <head>
12 <BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
13 </head>
14 <body>
15 <MainContainer>
16 <header>
17 <nav>
18 <ul
19 class="flex-row list-none pl-0 gap-8 *:*:text-fg *:*:hover:text-link"
20 >
21 <li>
22 <a href="/blog">blog</a>
23 </li>
24 <li>
25 <a href="/portfolio">portfolio</a>
26 </li>
27 <li>
28 <a href="https://memories.vixalien.com" target="_blank"
29 >memories ↗</a
30 >
31 </li>
32 </ul>
33 </nav>
34 </header>
35 <Intro transition:name="home" title={SITE_TITLE} />
36 <p>
37 Hello! I'm Angelo Verlain, but you can call me <i>vixalien</i>. I am a
38 web and GTK developer and this is my website, a collection of projects
39 and writings.
40 </p>
41 <p>
42 You'll mostly find me working on open-source projects, particularly
43 involved with the GNOME Project, Alpine Linux and others.
44 </p>
45 <p>
46 You can read about what I do by reading a few of my regular <a
47 href="/blog">blog posts</a
48 >, or see a list of projects I've worked on in the past by visiting my <a
49 href="/portfolio">portfolio</a
50 >.
51 </p>
52 <p>
53 Also keep an eye on <a href="https://karabo.io">Karabo ↗</a>,
54 which is an upcoming start-up I'm working on to help improve
55 organisational procedures in the region.
56 </p>
57 <h2 id="contact">Contact & Links</h2>
58 <ContactLinks />
59 <footer>
60 © {AUTHOR}
61 {new Date().getFullYear()}
62 </footer>
63 </MainContainer>
64 </body>
65</html>