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">
|
<html lang="en">
|
||||||
|
@ -11,11 +12,26 @@ import Card from '../components/Card.astro'
|
||||||
<title>Ahurac</title>
|
<title>Ahurac</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<Header />
|
||||||
<main>
|
<main>
|
||||||
|
<p>Home of a FOSS extremist and music nerd.</p>
|
||||||
<h1>My services</h1>
|
<h1>My services</h1>
|
||||||
<div id="cards">
|
<div id="cards">
|
||||||
<Card id="forgejo" name="Forgejo">A straight-to-the-point source code forge</Card>
|
<Card
|
||||||
<Card id="test2" name="Purasehoraderu">:)</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>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in a new issue