From 5ccc2dcbba3bfeca2d9edc39209d43d217eb2a80 Mon Sep 17 00:00:00 2001
From: Sohum <31165513+ssmendon@users.noreply.github.com>
Date: Tue, 03 Dec 2024 09:52:51 +0000
Subject: [PATCH] fix(head): update open-graph width and height protocol per ogp (#1512)
---
quartz/components/PageTitle.tsx | 37 +++++++++++++++++++------------------
1 files changed, 19 insertions(+), 18 deletions(-)
diff --git a/quartz/components/PageTitle.tsx b/quartz/components/PageTitle.tsx
index e8377ee..046dc52 100644
--- a/quartz/components/PageTitle.tsx
+++ b/quartz/components/PageTitle.tsx
@@ -1,22 +1,23 @@
-import { resolveToRoot } from "../path"
-import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
+import { pathToRoot } from "../util/path"
+import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "./types"
+import { classNames } from "../util/lang"
+import { i18n } from "../i18n"
-interface Options {
- title: string
+const PageTitle: QuartzComponent = ({ fileData, cfg, displayClass }: QuartzComponentProps) => {
+ const title = cfg?.pageTitle ?? i18n(cfg.locale).propertyDefaults.title
+ const baseDir = pathToRoot(fileData.slug!)
+ return (
+ <h2 class={classNames(displayClass, "page-title")}>
+ <a href={baseDir}>{title}</a>
+ </h2>
+ )
}
-export default ((opts?: Options) => {
- const title = opts?.title ?? "Untitled Quartz"
- function PageTitle({ fileData }: QuartzComponentProps) {
- const slug = fileData.slug!
- const baseDir = resolveToRoot(slug)
- return <h1 class="page-title"><a href={baseDir}>{title}</a></h1>
- }
- PageTitle.css = `
- .page-title {
- margin: 0;
- }
- `
+PageTitle.css = `
+.page-title {
+ font-size: 1.75rem;
+ margin: 0;
+}
+`
- return PageTitle
-}) satisfies QuartzComponentConstructor
+export default (() => PageTitle) satisfies QuartzComponentConstructor
--
Gitblit v1.10.0