···55555656 <PublicationBanner />
5757 <DiscoverBanner />
5858- <div className="text-tertiary italic text-sm font-normal -mt-2">
5959- Right now docs and publications are separate. Soon you'll be able to add
6060- docs to pubs!
6161- </div>
6258 </div>
6359 );
6460}
+4-16
components/ActionBar/MobileNavigation.tsx
···11-import { MenuSmall } from "components/Icons/MenuSmall";
21import { useIdentityData } from "components/IdentityProvider";
32import { Popover } from "components/Popover";
43import { Separator } from "components/Layout";
···109 WriterButton,
1110} from "./NavigationButtons";
1211import { PubIcon, PublicationButtons } from "./Publications";
1313-import { HomeSmall } from "components/Icons/HomeSmall";
1414-import { ReaderReadSmall } from "components/Icons/ReaderSmall";
1512import { LooseLeafSmall } from "components/Icons/LooseleafSmall";
1613import { normalizePublicationRecord } from "src/utils/normalizeRecords";
1717-import {
1818- NotificationsReadSmall,
1919- NotificationsUnreadSmall,
2020-} from "components/Icons/NotificationSmall";
2121-import { TagSmall } from "components/Icons/TagSmall";
2222-import { Avatar } from "components/Avatar";
2323-import { useProfileFromDid } from "src/utils/getRecordFromDid";
2414import { LoginActionButton } from "components/LoginButton";
2515import { ButtonPrimary } from "components/Buttons";
2616···6858 <LooseLeafSmall className="scale-[75%]" />
6959 </div>
7060 );
7171- } else
7272- return (
7373- <ButtonPrimary compact className="text-sm!">
7474- Create a Publication!
7575- </ButtonPrimary>
7676- );
6161+ }
6262+ if (identity) {
6363+ return <ButtonPrimary>Create a Pub!</ButtonPrimary>;
6464+ } else return;
7765 }
78667967 return (