⬆️ Upgrade passport to identity

This commit is contained in:
2024-02-18 22:41:18 +08:00
parent 9986fb0b9c
commit 7cecb8f8f7
7 changed files with 16 additions and 16 deletions

View File

@ -1,4 +1,4 @@
import Navbar from "./shared/Navbar.tsx";
import Navigator from "./shared/Navigator.tsx";
import { readProfiles, useUserinfo } from "../stores/userinfo.tsx";
import { createEffect, createMemo, createSignal, Show } from "solid-js";
import { readWellKnown } from "../stores/wellKnown.tsx";
@ -54,7 +54,7 @@ export default function RootLayout(props: any) {
}
>
<Show when={!searchParams["embedded"]}>
<Navbar />
<Navigator />
</Show>
<main class={`${mainContentStyles()} scrollbar-hidden`}>{props.children}</main>

View File

@ -9,7 +9,7 @@ interface MenuItem {
href?: string;
}
export default function Navbar() {
export default function Navigator() {
const nav: MenuItem[] = [
{ icon: "fa-solid fa-pen-nib", label: "Creators", href: "/creators" },
{ icon: "fa-solid fa-newspaper", label: "Feed", href: "/" },