tangled
alpha
login
or
join now
vielle.dev
/
site-archive
0
fork
atom
[Archived] Archived WIP of vielle.dev
0
fork
atom
overview
issues
pulls
pipelines
Replace <header> with <nav>
vielle.dev
7 months ago
71c1b3b7
554fa731
verified
This commit was signed with the committer's
known signature
.
vielle.dev
SSH Key Fingerprint:
SHA256:/4bvxqoEh9iMdjAPgcgAgXKZZQTROL3ULiPt6nH9RSs=
+4
-4
1 changed file
expand all
collapse all
unified
split
src
components
generic
Nav.astro
+4
-4
src/components/generic/Nav.astro
···
5
5
const data = (await getEntry("nav", "urls")?.then((x) => x.data)) ?? [];
6
6
---
7
7
8
8
-
<header>
8
8
+
<nav>
9
9
<h1>🪤 | vielle.dev</h1>
10
10
<ul>
11
11
{
···
51
51
})()
52
52
}
53
53
</ul>
54
54
-
</header>
54
54
+
</nav>
55
55
56
56
<style>
57
57
-
header {
57
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
69
-
header > ul {
69
69
+
nav > ul {
70
70
display: flex;
71
71
flex-direction: row;
72
72
align-items: center;