From 162ed36c711cb4f1aea1180a7aed532711f59e51 Mon Sep 17 00:00:00 2001 From: BinaryDigit Date: Thu, 19 Jun 2025 17:06:42 -0400 Subject: [PATCH] Quartz sync: Jun 19, 2025, 5:06 PM --- content/index.md | 4 ++-- quartz.layout.ts | 4 ++-- quartz/components/Status.tsx | 10 ++++++++++ quartz/components/index.ts | 2 ++ 4 files changed, 16 insertions(+), 4 deletions(-) create mode 100644 quartz/components/Status.tsx diff --git a/content/index.md b/content/index.md index 7d48b23..f9523ac 100644 --- a/content/index.md +++ b/content/index.md @@ -9,7 +9,7 @@ title: Liz's Notebook > I go by the name Liz Roboto - some people know me as B. I'm a tech director, artist, casual gamer and CSS tinkerer. I love the small web, retro tech, travel, art, fashion, photography and currently working on a creative portfolio and digital garden. Please keep checking back for updates each week. Subscribe to my updated RSS feed, sign my guestbook, or say hi via email)! >
-> [!alert] Current Status + diff --git a/quartz.layout.ts b/quartz.layout.ts index 6f53fce..51b461d 100644 --- a/quartz.layout.ts +++ b/quartz.layout.ts @@ -41,10 +41,10 @@ export const defaultContentPageLayout: PageLayout = { Component.Explorer(), ], right: [ - Component.TableOfContents(), + Component.Status(), Component.Backlinks(), Component.Graph(), - // Component.DesktopOnly(Component.TableOfContents()), + Component.DesktopOnly(Component.TableOfContents()), ], } diff --git a/quartz/components/Status.tsx b/quartz/components/Status.tsx new file mode 100644 index 0000000..a0fe270 --- /dev/null +++ b/quartz/components/Status.tsx @@ -0,0 +1,10 @@ +export default (() => { + function Status() { + // return

Current Status:

+ //
+ //

+ return

+ } + + return Status +}) satisfies QuartzComponentConstructor \ No newline at end of file diff --git a/quartz/components/index.ts b/quartz/components/index.ts index cece8e6..b337cd1 100644 --- a/quartz/components/index.ts +++ b/quartz/components/index.ts @@ -23,6 +23,7 @@ import Breadcrumbs from "./Breadcrumbs" import Comments from "./Comments" import Flex from "./Flex" import ConditionalRender from "./ConditionalRender" +import Status from "./Status" export { ArticleTitle, @@ -50,4 +51,5 @@ export { Comments, Flex, ConditionalRender, + Status, }