minor improvements
This commit is contained in:
parent
cebe746ca7
commit
9b85a2b1bb
|
@ -52,25 +52,25 @@ export default function Sidebar({ className }: { className?: string }) {
|
|||
>
|
||||
<div className="grid grid-cols-2 gap-2">
|
||||
<SidebarHighlightLink
|
||||
title={"Dashboard"}
|
||||
title={t("dashboard")}
|
||||
href={`/dashboard`}
|
||||
icon={"bi-house"}
|
||||
active={active === `/dashboard`}
|
||||
/>
|
||||
<SidebarHighlightLink
|
||||
title={"Pinned"}
|
||||
title={t("pinned")}
|
||||
href={`/links/pinned`}
|
||||
icon={"bi-pin-angle"}
|
||||
active={active === `/links/pinned`}
|
||||
/>
|
||||
<SidebarHighlightLink
|
||||
title={"All Links"}
|
||||
title={t("all_links")}
|
||||
href={`/links`}
|
||||
icon={"bi-link-45deg"}
|
||||
active={active === `/links`}
|
||||
/>
|
||||
<SidebarHighlightLink
|
||||
title={"All Collections"}
|
||||
title={t("all_collections")}
|
||||
href={`/collections`}
|
||||
icon={"bi-folder"}
|
||||
active={active === `/collections`}
|
||||
|
|
|
@ -145,7 +145,7 @@ export default function Index() {
|
|||
<input
|
||||
type="text"
|
||||
autoFocus
|
||||
className="sm:text-3xl text-2xl capitalize bg-transparent h-10 w-3/4 outline-none border-b border-b-neutral-content"
|
||||
className="sm:text-3xl text-2xl bg-transparent h-10 w-3/4 outline-none border-b border-b-neutral-content"
|
||||
value={newTagName}
|
||||
onChange={(e) => setNewTagName(e.target.value)}
|
||||
/>
|
||||
|
|
|
@ -364,5 +364,7 @@
|
|||
"link_pinned": "Link Pinned!",
|
||||
"link_unpinned": "Link Unpinned!",
|
||||
"webpage": "Webpage",
|
||||
"server_administration": "Server Administration"
|
||||
"server_administration": "Server Administration",
|
||||
"all_collections": "All Collections",
|
||||
"dashboard": "Dashboard"
|
||||
}
|
|
@ -364,5 +364,7 @@
|
|||
"link_pinned": "Link Fissato!",
|
||||
"link_unpinned": "Fissaggio Link Rimosso!",
|
||||
"webpage": "Pagina web",
|
||||
"server_administration": "Amministrazione Server"
|
||||
"server_administration": "Amministrazione Server",
|
||||
"all_collections": "Tutte le Collezioni",
|
||||
"dashboard": "Dashboard"
|
||||
}
|
||||
|
|
Ŝarĝante…
Reference in New Issue