--- import Jumbotron from '../components/Jumbotron.astro' import { ArticleData } from '@extractus/article-extractor' import '../styles/reset.css' import '../styles/variables.css' export interface Props { article: ArticleData | null } const { article } = Astro.props const appTitle = article?.title ? `${article.title} | Cozy` : 'Cozy' ---