index : ajout d'un titre, ajout d'un conteneur pour les cartes
This commit is contained in:
parent
37029dd1a3
commit
1d29344bc1
1 changed files with 6 additions and 3 deletions
|
@ -12,14 +12,17 @@ import Card from '../components/Card.astro'
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<main>
|
<main>
|
||||||
<Card id="test1" name="Bruh">Électrocardiogramme</Card>
|
<h1>My services</h1>
|
||||||
<Card id="test2" name="Purasehoraderu">:)</Card>
|
<div id="cards">
|
||||||
|
<Card id="test1" name="Bruh">Électrocardiogramme</Card>
|
||||||
|
<Card id="test2" name="Purasehoraderu">:)</Card>
|
||||||
|
</div>
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
main {
|
#cards {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
Loading…
Reference in a new issue