···33import { SITE_TITLE, SITE_DESCRIPTION, AUTHOR } from "../consts";
44import Intro from "../components/Intro.astro";
55import Welcome from "../components/Welcome.astro";
66-import PostsIndex from "../components/PostsIndex.astro";
76import ContactLinks from "../components/ContactLinks.astro";
88-import ProjectsIndex from "../components/ProjectsIndex.astro";
97---
108119<!doctype html>
···1513 </head>
1614 <body>
1715 <main class="container">
1616+ <header>
1717+ <nav>
1818+ <a href="/blog">Blog</a>
1919+ <a href="/portfolio">Portfolio</a>
2020+ </nav>
2121+ </header>
1822 <Intro title={SITE_TITLE} />
1919- <Welcome>
2020- Hello! I'm Angelo Verlain, but you can call me vixalien. I am a web and
2121- GTK developer and this is my website, a collection of projects and
2222- writings.
2323- </Welcome>
2424- <Fragment>
2525- <div class="heading">
2626- <h2>Posts</h2>
2727- <a href="/blog">All Posts →</a>
2828- </div>
2929- <PostsIndex limit={3} />
3030- <p>
3131- <a href="/blog">More Blog Posts →</a>
3232- </p>
3333- </Fragment>
3434- <Fragment>
3535- <div class="heading">
3636- <h2>Projects</h2>
3737- <a href="/portfolio">Portfolio →</a>
3838- </div>
3939- <ProjectsIndex limit={3} />
4040- <p>
4141- <a href="/portfolio">More Projects →</a>
4242- </p>
4343- </Fragment>
2323+ <p>
2424+ Hello! I'm Angelo Verlain, but you can call me <i>vixalien</i>. I am a
2525+ web and GTK developer and this is my website, a collection of projects
2626+ and writings.
2727+ </p>
2828+ <p>
2929+ You'll mostly find me working on open-source projects, particularly
3030+ involved with the GNOME Project, Alpine Linux and others.
3131+ </p>
3232+ <p>
3333+ You can read about what I do by reading a few of my regular <a
3434+ href="/blog">blog posts</a
3535+ >, or see a list of projects I've worked on in the past by visiting my <a
3636+ href="/portfolio">portfolio</a
3737+ >.
3838+ </p>
3939+ <p>
4040+ Also keep an eye on <a href="https://karabo.io">Karabo</a>, which is an
4141+ upcoming start-up I'm working on to help improve organisational
4242+ procedures in the region.
4343+ </p>
4444 <h2 id="contact">Contact & Links</h2>
4545 <ContactLinks />
4646 <footer>
···5656 display: flex;
5757 justify-content: space-between;
5858 align-items: center;
5959+ }
6060+6161+ nav {
6262+ padding: 0;
6363+ display: flex;
6464+ gap: 2rem;
6565+ list-style-type: none;
6666+ margin: 0;
6767+ }
6868+6969+ /* nav ul li {
7070+ margin: 0;
7171+ line-height: 1;
7272+ } */
7373+7474+ nav a {
7575+ border-bottom: 1px solid;
7676+ display: inline-block;
7777+ }
7878+7979+ nav a:hover {
8080+ color: var(--heading-fg);
5981 }
6082</style>