···34import { MoreOptionsTiny } from "components/Icons/MoreOptionsTiny";
35import { PaintSmall } from "components/Icons/PaintSmall";
36import { ShareSmall } from "components/Icons/ShareSmall";
37-import Link from "next/link";
3839export function Pages(props: { rootPage: string }) {
40 let rootPage = useEntity(props.rootPage, "root/page")[0];
···231 }}
232 />
233 ) : null}
234- <div
235- 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"}`}
236- >
237- <Link
238- href="/"
239- className="text-accent-contrast font-bold hover:no-underline"
240- >
241- Publication Name
242- </Link>
243- <h2 className="">Titles Are Cool</h2>
244- <p className="italic text-secondary">
245- This is a description! What happens if it's just a little but longer,
246- since it's nice to be able to say a few more words...
247- </p>
248- <p className="text-sm text-tertiary">Draft</p>
249- </div>
250 <Blocks entityID={props.entityID} />
251 {/* we handle page bg in this sepate div so that
252 we can apply an opacity the background image
···34import { MoreOptionsTiny } from "components/Icons/MoreOptionsTiny";
35import { PaintSmall } from "components/Icons/PaintSmall";
36import { ShareSmall } from "components/Icons/ShareSmall";
37+import { PublicationMetadata } from "./PublicationMetadata";
3839export function Pages(props: { rootPage: string }) {
40 let rootPage = useEntity(props.rootPage, "root/page")[0];
···231 }}
232 />
233 ) : null}
234+ <PublicationMetadata cardBorderHidden={!!cardBorderHidden?.data.value} />
000000000000000235 <Blocks entityID={props.entityID} />
236 {/* we handle page bg in this sepate div so that
237 we can apply an opacity the background image