index : inclusion de la header et de nouvelles cartes
This commit is contained in:
parent
7b674e2479
commit
460e8549d2
1 changed files with 19 additions and 3 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue