[Archived] Archived WIP of vielle.dev

Replace <header> with <nav>

vielle.dev 71c1b3b7 554fa731

verified
+4 -4
+4 -4
src/components/generic/Nav.astro
··· 5 5 const data = (await getEntry("nav", "urls")?.then((x) => x.data)) ?? []; 6 6 --- 7 7 8 - <header> 8 + <nav> 9 9 <h1>🪤 | vielle.dev</h1> 10 10 <ul> 11 11 { ··· 51 51 })() 52 52 } 53 53 </ul> 54 - </header> 54 + </nav> 55 55 56 56 <style> 57 - header { 57 + nav { 58 58 background-color: white; 59 59 border: 5px solid black; 60 60 border-radius: 0 0 20px 20px; ··· 66 66 padding: 10px 40px; 67 67 } 68 68 69 - header > ul { 69 + nav > ul { 70 70 display: flex; 71 71 flex-direction: row; 72 72 align-items: center;