Aldonas givdaĵon pri registriĝo al publikaj listoj
This commit is contained in:
parent
5a9dc63e96
commit
1c142da2c3
|
@ -17,6 +17,7 @@ import Link from "next/link";
|
|||
import useLocalSettingsStore from "@/store/localSettings";
|
||||
import SearchBar from "@/components/SearchBar";
|
||||
import EditCollectionSharingModal from "@/components/ModalContent/EditCollectionSharingModal";
|
||||
import { dropdownTriggerer } from "@/lib/client/utils";
|
||||
import { useTranslation } from "next-i18next";
|
||||
import getServerSideProps from "@/lib/client/getServerSideProps";
|
||||
import LinkListOptions from "@/components/LinkListOptions";
|
||||
|
@ -143,7 +144,7 @@ export default function PublicCollections() {
|
|||
<div className="flex gap-2 items-center mt-8 min-w-fit">
|
||||
<ToggleDarkMode />
|
||||
|
||||
<Link href="https://linkwarden.app/" target="_blank">
|
||||
<Link href="https://el.xwx.moe/dashboard" target="_blank">
|
||||
<Image
|
||||
src={`/icon.png`}
|
||||
width={551}
|
||||
|
@ -153,6 +154,35 @@ export default function PublicCollections() {
|
|||
className="h-8 w-fit mx-auto rounded"
|
||||
/>
|
||||
</Link>
|
||||
<div className="dropdown dropdown-end sm:inline-block">
|
||||
<div className="tooltip tooltip-bottom" data-tip={t("create_new")}>
|
||||
<div
|
||||
tabIndex={0}
|
||||
role="button"
|
||||
onMouseDown={dropdownTriggerer}
|
||||
className="flex min-w-[3.4rem] items-center btn btn-accent dark:border-violet-400 text-white btn-sm max-h-[2rem] px-2 relative"
|
||||
>
|
||||
<span>
|
||||
<i className="bi-plus text-4xl absolute -top-[0.3rem] left-0 pointer-events-none"></i>
|
||||
</span>
|
||||
<span>
|
||||
<i className="bi-caret-down-fill text-xs absolute top-2 right-[0.3rem] pointer-events-none"></i>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<ul className="min-w-[25em] dropdown-content z-[1] menu shadow bg-base-200 border border-neutral-content rounded-box mt-1">
|
||||
<li>
|
||||
<p><strong>Bonvolu helpi nin plenigi ĉi tiun liston!</strong></p>
|
||||
<p>Por igi ĉi tiun liston modelan liston de ligiloj el Esperantujo ni bezonas vian helpon!</p>
|
||||
<p>Se vi volus aldoni ligilon, registriĝu ĉe ĉi tiu retejo; kaj poste, sciigu administraton por gajni redaktpermeson.</p>
|
||||
<p>Ĝuste nun, tiuj estas Gergej kaj jadedctrl; ili troviĝas en Matrix k XMPP babilejoj, kies ligiloj troviĝas ĉe la dua ligilo suba. Alternative, vi povus sendi retleteron al »jadedctrl ĉe posteo.net«.</p>
|
||||
<p>Por komenci, klaku la subajn ligilo-paŝojn:</p>
|
||||
</li>
|
||||
<Link href="/register"><li><strong>1. Registriĝi</strong></li></Link>
|
||||
<Link href="https://eventaservo.org/o/NBDGDIE"><li><strong>2. Sciigi administranton</strong></li></Link>
|
||||
<Link href={`/collections/${router.query.id}`}><li><strong>3. Saluti kaj ek!</strong></li></Link>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
Ŝarĝante…
Reference in New Issue