--- import * as fs from 'fs' import * as toml from 'toml' import background1 from '../images/background.avif' import background2 from '../images/background.webp' interface Props { title: string font?: 'roboto' | 'inter' | 'montserrat' | 'open-sans' | 'public-sans' preloadBackground?: boolean } const { title, font, preloadBackground } = Astro.props const config = toml.parse(fs.readFileSync('configs/config.site.toml', 'utf8')) ---