const ownerId = "nearcon23.near"; const Container = styled.div` display: flex; flex-direction: row; justify-content: flex-start; align-items: flex-start; flex-wrap: nowrap; padding: 3.5em 3.5em 4.5em; gap: 3em; background: #fff; @media screen and (max-width: 768px) { flex-direction: column; } `; const Explainer = styled.div` width: 45%; @media screen and (max-width: 768px) { width: 100%; } `; const Detail = styled.div` width: 55%; @media screen and (max-width: 768px) { width: 100%; } `; return ( <Container> <Explainer> <Widget src={`${ownerId}/widget/Ticket.QRCode`} props={props} /> </Explainer> <Detail> <Widget src={`${ownerId}/widget/Ticket.Detail`} props={props} /> </Detail> </Container> );