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.text}