diff --git a/quartz.config.ts b/quartz.config.ts index 0fda8b7..35d0857 100644 --- a/quartz.config.ts +++ b/quartz.config.ts @@ -23,7 +23,7 @@ const config: QuartzConfig = { typography: { header: "Schibsted Grotesk", body: "Source Sans Pro", - code: "IBM Plex Mono", + code: "JetBrains Mono", }, colors: { lightMode: { diff --git a/quartz.layout.ts b/quartz.layout.ts index 93b3801..8b23149 100644 --- a/quartz.layout.ts +++ b/quartz.layout.ts @@ -33,8 +33,6 @@ export const defaultContentPageLayout: PageLayout = { Component: Component.Search(), grow: true, }, - { Component: Component.Darkmode() }, - { Component: Component.ReaderMode() }, ], }), Component.RecentNotes(), diff --git a/quartz/components/pages/404.tsx b/quartz/components/pages/404.tsx index 63da2c8..8d0dc61 100644 --- a/quartz/components/pages/404.tsx +++ b/quartz/components/pages/404.tsx @@ -1,16 +1,27 @@ import { i18n } from "../../i18n" import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "../types" +import Graph from "../Graph" const NotFound: QuartzComponent = ({ cfg }: QuartzComponentProps) => { // If baseUrl contains a pathname after the domain, use this as the home link const url = new URL(`https://${cfg.baseUrl ?? "example.com"}`) const baseDir = url.pathname + + const GraphComponent = Graph({ + localGraph: { + depth: -1, // Shows all nodes + scale: 0.9, // You might want to adjust scale for the full graph + } + }) + return (

404

{i18n(cfg.locale).pages.error.notFound}

{i18n(cfg.locale).pages.error.home} +

+
) } diff --git a/quartz/static/icon.png b/quartz/static/icon.png index b6656a7..0acb5ea 100644 Binary files a/quartz/static/icon.png and b/quartz/static/icon.png differ diff --git a/quartz/static/og-image.png b/quartz/static/og-image.png index f132145..0c2445f 100644 Binary files a/quartz/static/og-image.png and b/quartz/static/og-image.png differ