import picOne from "../assets/hero-picture-1.png"; interface PicWithTextProps { src?: string title?: string text?: string reverse: boolean } export default function PicWithText(content: PicWithTextProps){ let flex_state = content.reverse ? "md:flex-row flex-col" : "md:flex-row-reverse flex-col-reverse"; return (

{content.title}

{content.text}

This is more text, however, this is actually a quote, yes, a quote indeed!

) }