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

@ -3,7 +3,7 @@
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import { tracks } from "../utils/fm.ts";
import { FM_USER, tracks } from "../utils/fm.ts";
export function Fm() {
if (!tracks) return;
@ -45,7 +45,7 @@ export function Fm() {
</a>
</li>
))}
<a class="fm-more" href="https://last.fm/user/favewa">
<a class="fm-more" href={`https://last.fm/user/${FM_USER}`}>
Check out more on Last.fm
</a>
</ul>

View file

@ -7,6 +7,7 @@ export default function Footer() {
return (
<footer class="section typewriting">
<p class="alt alt-font">
© 2025 <span class="highlight">miwa</span>{" · "}
Made with <span class="highlight"></span> · Source code available at
{" "}
<a href="https://kyu.re/~web">git.acpi.at</a> under the{" "}
@ -20,10 +21,6 @@ export default function Footer() {
.
</p>
<br />
<p class="alt alt-font">
© 2025 <span class="highlight">miwa</span>{" "}
Powered by FreeBSD and autism
</p>
</footer>
);
}

View file

@ -7,9 +7,9 @@ export function Header(props: any) {
return (
<header {...props}>
<h1 class="typecycle">
~<span>miwa</span>
~<span>lívia</span>
<span>lívia</span>
<span>lívia</span>
<span>clara</span>
</h1>
<h2>
she/her free software advocate linguistics enthusiast ˶ ˶ sა

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>
);