import { StaticResources } from "../resources" interface Props { title: string, description: string, externalResources: StaticResources, baseDir: string } export default function({ title, description, externalResources, baseDir }: Props) { const { css, js } = externalResources const iconPath = baseDir + "/static/icon.png" const ogImagePath = baseDir + "/static/og-image.png" return {title} {css.map(href => )} {js.filter(resource => resource.loadTime === "beforeDOMReady").map(resource =>