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: #f2f1ea; background-image: url("https://nearcon.s3.amazonaws.com/venues.png"); background-position: center; background-repeat: no-repeat; background-size: cover; @media screen and (max-width: 768px) { flex-direction: column; padding: 1em; background-image: url("https://nearcon.s3.amazonaws.com/venues-mobile.png"); } `; const Text = styled.div` display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; width: 100%%; gap: 2em; padding: 0; @media screen and (max-width: 768px) { width: 100%; } h2 { font-family: "FK Grotesk"; font-style: normal; font-weight: 500; font-size: 1.625em; line-height: 1.5em; color: #000000; } p { font-family: "FK Grotesk"; font-style: normal; font-weight: 400; font-size: 16px; line-height: 150%; color: #000000; } `; const Visual = styled.div` width: 33%; border-radius: 20px; display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; gap: 2em; @media screen and (max-width: 768px) { width: 100%; } img { width: 100%; } b { font-family: "Mona Sans"; font-style: normal; font-weight: 600; font-size: 16px; line-height: 170%; color: #000000; } p { font-family: "Mona Sans"; font-style: normal; font-weight: 400; font-size: 14px; line-height: 170%; color: #000000; } `; const palace = "bafkreigeski6yg4tjbzssyrkvxmm4yfidm6mdbnwkdbiytvjf3nr2jgnhm"; const haven = "bafkreid5xyx7nuscivi4immsmgzfrjpi7f6okyx67yiqra6keinzmbzzf4"; const communityQ = "bafkreiclihjtbiowl2pzrdjspw24m6r63g5kw4jllwtqol3ohbsflk7w7y"; const mapImage = (src) => `https://ipfs.near.social/ipfs/${src}`; return ( <Container> <div> <Text> <h2>Venue(s)</h2> </Text> <p style={{ fontWeight: "400" }}> Three beautiful venues just down the street from each other will offer a unique and focused experience. </p> <Text> <b> Join the official telegram channel, and drop into the spirit before the event. </b> </Text> <div style={{ marginTop: 20 }}> <Widget src={`${ownerId}/widget/Home.TelegramButton`} props={{ href: "https://t.me/nearcon", text: "Nearcon Telegram", }} /> </div> </div> <Visual> <img src={mapImage(palace)} alt="NEARCON Palace" /> <p style={{fontWeight: 500}}> <b>Nearcon HQ:</b> <br /> Convento Do Beato <br /> Alameda do Beato 40, 1950-042 <br /> Lisboa, Portugal </p> </Visual> <Visual> <img src={mapImage(haven)} alt="NEARCON Haven" /> <p style={{fontWeight: 500}}> <b>Hacker HQ:</b> <br /> Armazem 16 <br /> R. Pereira Henriques {"nÂș1"}, 1950-242 <br /> Lisboa, Portugal </p> </Visual> <Visual> <img src={mapImage(communityQ)} alt="NEARCON Haven" /> <p style={{fontWeight: 500}}> <b>Community HQ</b> <br /> Rua Pereira Henriques <br /> 31950-242 <br /> Lisboa, Portugal </p> </Visual> </Container> );