import { i18n } from "../i18n" import { FullSlug, joinSegments, pathToRoot } from "../util/path" import { JSResourceToScriptElement } from "../util/resources" import { googleFontHref } from "../util/theme" import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "./types" export default (() => { const Head: QuartzComponent = ({ cfg, fileData, externalResources }: QuartzComponentProps) => { const title = fileData.frontmatter?.title ?? i18n(cfg.locale).propertyDefaults.title const description = fileData.description?.trim() ?? i18n(cfg.locale).propertyDefaults.description const { css, js } = externalResources const url = new URL(`https://${cfg.baseUrl ?? "example.com"}`) const path = url.pathname as FullSlug const baseDir = fileData.slug === "404" ? path : pathToRoot(fileData.slug!) const iconPath = "https://f003.backblazeb2.com/file/Solweaver-Site/favicon.png" const ogImagePath = "https://f003.backblazeb2.com/file/Solweaver-Site/favicon.png" return ( {title} {cfg.theme.cdnCaching && cfg.theme.fontOrigin === "googleFonts" && ( <> )} {cfg.baseUrl && } {css.map((href) => ( ))} {js .filter((resource) => resource.loadTime === "beforeDOMReady") .map((res) => JSResourceToScriptElement(res, true))} ) } return Head }) satisfies QuartzComponentConstructor