index : inclusion de la header et de nouvelles cartes

This commit is contained in:
Ahurac 2024-01-31 15:00:21 +01:00
parent 7b674e2479
commit 460e8549d2

View file

@ -1,5 +1,6 @@
---
import Card from '../components/Card.astro'
import Header from '../components/Header.astro';
import Card from '../components/Card.astro';
---
<html lang="en">
@ -11,11 +12,26 @@ import Card from '../components/Card.astro'
<title>Ahurac</title>
</head>
<body>
<Header />
<main>
<p>Home of a FOSS extremist and music nerd.</p>
<h1>My services</h1>
<div id="cards">
<Card id="forgejo" name="Forgejo">A straight-to-the-point source code forge</Card>
<Card id="test2" name="Purasehoraderu">:)</Card>
<Card
id="forgejo"
name="Forgejo"
link="https://git.ahur.ac/"
>A straight-to-the-point source code forge</Card>
<Card
id="matrix"
name="Matrix"
link="https://chat.ahur.ac/"
>The messenger that doesn't spy on you</Card>
<Card
id="vaultwarden"
name="Vaultwarden"
link="https://vw.ahur.ac/"
>A (Rust) based password manager</Card>
</div>
</main>
</body>