diff options
| author | William Hergès <william@herges.fr> | 2025-08-09 14:04:43 +0200 |
|---|---|---|
| committer | William Hergès <william@herges.fr> | 2025-08-09 14:04:43 +0200 |
| commit | 5b7edc57501754e4976fba06ef9ae9abd71582d6 (patch) | |
| tree | 6d523e9091cbf494ca5f84b024bbb2b49db107e3 /src/pages/index.astro | |
| parent | cbf9a7b672fce0943cc6306c506dda3ab1c1024e (diff) | |
feat(header): simple style
Diffstat (limited to 'src/pages/index.astro')
| -rw-r--r-- | src/pages/index.astro | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro index 678772c..a0ff658 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -11,6 +11,19 @@ import "../scss/style.scss"; <title>Arnaud Hergès</title> </head> <body> - <h1>Astro</h1> + <header> + <h1>Arnaud Hergès</h1> + <div class="tags"> + <p class="tag">batteur</p> + <p class="tag">-</p> + <p class="tag">compositeur</p> + <p class="tag">-</p> + <p class="tag">producteur</p> + <p class="tag">-</p> + <p class="tag">références</p> + <p class="tag">-</p> + <p class="tag">contact</p> + </div> + </header> </body> </html> |
