import '../styles/HTML.sass' import { type JSXElement, Show } from 'solid-js' import background1 from '../images/background.avif' import background2 from '../images/background.webp' interface Props { title: string name: string description: string children: JSXElement font?: 'roboto' | 'inter' | 'montserrat' | 'open-sans' | 'public-sans' preloadBackground?: boolean } export default (props: Props) => { return ( <> {props.title} {props.children} ) }