···3535import { MoreOptionsTiny } from "components/Icons/MoreOptionsTiny";
3636import { PaintSmall } from "components/Icons/PaintSmall";
3737import { ShareSmall } from "components/Icons/ShareSmall";
3838+import Link from "next/link";
38393940export function Pages(props: { rootPage: string }) {
4041 let rootPage = useEntity(props.rootPage, "root/page")[0];
···233234 }}
234235 />
235236 ) : null}
237237+ <div
238238+ className={`flex flex-col px-3 sm:px-4 pb-4 sm:pb-6 ${cardBorderHidden?.data.value ? "sm:pt-4 pt-0" : "sm:pt-6 pt-2"}`}
239239+ >
240240+ <Link
241241+ href="/"
242242+ className="text-accent-contrast font-bold hover:no-underline"
243243+ >
244244+ Publication Name
245245+ </Link>
246246+ <h2 className="">Titles Are Cool</h2>
247247+ <p className="italic text-secondary">
248248+ This is a description! What happens if it's just a little but longer,
249249+ since it's nice to be able to say a few more words...
250250+ </p>
251251+ <p className="text-sm text-tertiary">Draft</p>
252252+ </div>
236253 <Blocks entityID={props.entityID} />
237254 {/* we handle page bg in this sepate div so that
238255 we can apply an opacity the background image
+2-1
components/Toolbar/HighlightToolbar.tsx
···1010import * as Tooltip from "@radix-ui/react-tooltip";
1111import { theme } from "../../tailwind.config";
1212import {
1313- ColorPicker,
1413 pickers,
1514 SectionArrow,
1615 setColorAttribute,
1716} from "components/ThemeManager/ThemeSetter";
1717+import { ColorPicker } from "components/ThemeManager/ColorPicker";
1818import { useEntity, useReplicache } from "src/replicache";
1919import { useEffect, useMemo, useState } from "react";
2020import { useColorAttribute } from "components/ThemeManager/useColorAttribute";
···2929import { PopoverArrow } from "components/Icons/PopoverArrow";
3030import { ArrowRightTiny } from "components/Icons/ArrowRightTiny";
3131import { PaintSmall } from "components/Icons/PaintSmall";
3232+import { Color } from "react-aria-components";
32333334export const HighlightButton = (props: {
3435 lastUsedHighlight: string;