|
|
@ -10,12 +10,12 @@ import '@fontsource/iosevka/latin.css'
|
|
|
|
import '../styles/main.scss'
|
|
|
|
import '../styles/main.scss'
|
|
|
|
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
type Props = {
|
|
|
|
title: string
|
|
|
|
title?: string
|
|
|
|
description: string
|
|
|
|
description?: string
|
|
|
|
thumbnail: string
|
|
|
|
thumbnail?: string
|
|
|
|
|
|
|
|
|
|
|
|
/** Tags for the page, used for styling */
|
|
|
|
/** Tags for the page, used for styling */
|
|
|
|
pageTags: string | string[]
|
|
|
|
pageTags?: string | string[]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const { title, description, thumbnail, pageTags } = Astro.props
|
|
|
|
const { title, description, thumbnail, pageTags } = Astro.props
|
|
|
|