import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "./types" import style from "./styles/backlinks.scss" import { resolveRelative, simplifySlug } from "../util/path" import { i18n } from "../i18n" import { classNames } from "../util/lang" const Backlinks: QuartzComponent = ({ fileData, allFiles, displayClass, cfg, }: QuartzComponentProps) => { const slug = simplifySlug(fileData.slug!) const backlinkFiles = allFiles.filter((file) => file.links?.includes(slug)) return (

{i18n(cfg.locale).components.backlinks.title}

) } Backlinks.css = style export default (() => Backlinks) satisfies QuartzComponentConstructor