mirror of
https://github.com/logos-co/roadmap.git
synced 2025-01-25 15:38:51 +00:00
12 lines
326 B
TypeScript
12 lines
326 B
TypeScript
import { QuartzComponentProps } from "./types"
|
|
|
|
export default function ArticleTitle({ fileData }: QuartzComponentProps) {
|
|
const title = fileData.frontmatter?.title
|
|
const displayTitle = fileData.slug === "index" ? undefined : title
|
|
if (displayTitle) {
|
|
return <h1>{displayTitle}</h1>
|
|
} else {
|
|
return null
|
|
}
|
|
}
|