ok, not yet apparently

This commit is contained in:
Chris Kruining 2025-04-01 15:30:18 +02:00
parent 17e769c598
commit 0e05e9ece1
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
2 changed files with 141 additions and 89 deletions

View file

@ -1,12 +1,12 @@
import { A } from "@solidjs/router";
import {
FaSolidHouseChimney,
FaSolidMagnifyingGlass,
FaSolidStar,
} from "solid-icons/fa";
AiOutlineHome,
AiOutlineStar,
AiOutlineSearch,
} from "solid-icons/ai";
import { ParentComponent, Component } from "solid-js";
import css from "./shell.module.css";
import { ColorSchemePicker } from "../theme";
import css from "./shell.module.css";
export const Shell: ParentComponent = (props) => {
return (
@ -33,17 +33,17 @@ const Nav: Component = (props) => {
return (
<nav class={css.nav}>
<ul>
<A href="/">
<FaSolidHouseChimney />
Home
<A href="/" activeClass={css.active} end={true}>
<AiOutlineHome />
<span>Home</span>
</A>
<A href="/library">
<FaSolidStar />
Library
<A href="/library" activeClass={css.active}>
<AiOutlineStar />
<span>Library</span>
</A>
<A href="/search">
<FaSolidMagnifyingGlass />
Search
<A href="/search" activeClass={css.active}>
<AiOutlineSearch />
<span>Search</span>
</A>
</ul>
</nav>