This commit is contained in:
laura 2025-12-09 19:25:04 -03:00
parent 862b11b9ef
commit 9c6da082a0
Signed by: w
GPG key ID: BCD2117C99E69817
31 changed files with 441 additions and 263 deletions

View file

@ -4,7 +4,7 @@
*/
export default function Links(props: {
selected: "home" | "about" | "reports" | "misc";
selected: "home" | "contact" | "reports";
}) {
return (
<nav>
@ -12,15 +12,12 @@ export default function Links(props: {
<li class={props.selected === "home" ? "selected" : ""}>
<a href="/">home</a>
</li>{" "}
<li class={props.selected === "about" ? "selected" : ""}>
<a href="/about">about</a>
<li class={props.selected === "contact" ? "selected" : ""}>
<a href="/contact">contact</a>
</li>
<li class={props.selected === "reports" ? "selected" : ""}>
<a href="/reports">reports</a>
</li>
{/* <li class={props.selected === "misc" ? "selected" : ""}> */}
{/* <a href="/misc">misc</a> */}
{/* </li> */}
</ul>
</nav>
);