···35import { MoreOptionsTiny } from "components/Icons/MoreOptionsTiny";
36import { PaintSmall } from "components/Icons/PaintSmall";
37import { ShareSmall } from "components/Icons/ShareSmall";
03839export function Pages(props: { rootPage: string }) {
40 let rootPage = useEntity(props.rootPage, "root/page")[0];
···233 }}
234 />
235 ) : null}
0000000000000000236 <Blocks entityID={props.entityID} />
237 {/* we handle page bg in this sepate div so that
238 we can apply an opacity the background image
···35import { MoreOptionsTiny } from "components/Icons/MoreOptionsTiny";
36import { PaintSmall } from "components/Icons/PaintSmall";
37import { ShareSmall } from "components/Icons/ShareSmall";
38+import Link from "next/link";
3940export function Pages(props: { rootPage: string }) {
41 let rootPage = useEntity(props.rootPage, "root/page")[0];
···234 }}
235 />
236 ) : null}
237+ <div
238+ 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"}`}
239+ >
240+ <Link
241+ href="/"
242+ className="text-accent-contrast font-bold hover:no-underline"
243+ >
244+ Publication Name
245+ </Link>
246+ <h2 className="">Titles Are Cool</h2>
247+ <p className="italic text-secondary">
248+ This is a description! What happens if it's just a little but longer,
249+ since it's nice to be able to say a few more words...
250+ </p>
251+ <p className="text-sm text-tertiary">Draft</p>
252+ </div>
253 <Blocks entityID={props.entityID} />
254 {/* we handle page bg in this sepate div so that
255 we can apply an opacity the background image
+2-1
components/Toolbar/HighlightToolbar.tsx
···10import * as Tooltip from "@radix-ui/react-tooltip";
11import { theme } from "../../tailwind.config";
12import {
13- ColorPicker,
14 pickers,
15 SectionArrow,
16 setColorAttribute,
17} from "components/ThemeManager/ThemeSetter";
018import { useEntity, useReplicache } from "src/replicache";
19import { useEffect, useMemo, useState } from "react";
20import { useColorAttribute } from "components/ThemeManager/useColorAttribute";
···29import { PopoverArrow } from "components/Icons/PopoverArrow";
30import { ArrowRightTiny } from "components/Icons/ArrowRightTiny";
31import { PaintSmall } from "components/Icons/PaintSmall";
03233export const HighlightButton = (props: {
34 lastUsedHighlight: string;
···10import * as Tooltip from "@radix-ui/react-tooltip";
11import { theme } from "../../tailwind.config";
12import {
013 pickers,
14 SectionArrow,
15 setColorAttribute,
16} from "components/ThemeManager/ThemeSetter";
17+import { ColorPicker } from "components/ThemeManager/ColorPicker";
18import { useEntity, useReplicache } from "src/replicache";
19import { useEffect, useMemo, useState } from "react";
20import { useColorAttribute } from "components/ThemeManager/useColorAttribute";
···29import { PopoverArrow } from "components/Icons/PopoverArrow";
30import { ArrowRightTiny } from "components/Icons/ArrowRightTiny";
31import { PaintSmall } from "components/Icons/PaintSmall";
32+import { Color } from "react-aria-components";
3334export const HighlightButton = (props: {
35 lastUsedHighlight: string;