keroosha.cybergulag.today/quartz/components/PageTitle.tsx

23 lines
565 B
TypeScript
Raw Normal View History

2023-06-08 08:27:32 +03:00
import { resolveToRoot } from "../path"
2023-06-12 09:46:38 +03:00
import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
2023-06-08 08:27:32 +03:00
2023-06-18 20:47:07 +03:00
interface Options {
title: string
2023-06-08 08:27:32 +03:00
}
2023-06-12 09:46:38 +03:00
2023-06-18 20:47:07 +03:00
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;
}
`
return PageTitle
}) satisfies QuartzComponentConstructor