\r\n \r\n About {data.site.siteMetadata.title}
\r\n \r\n dailydefi.org serves to provide useful resources for the space of decentralized finance.\r\n
\r\n \r\n Not financial advice, the site is only for educational content.\r\n
\r\n\r\n \r\n dailydefi.org attempts to make the best attempt at providing correct and up to date\r\n information, but this information is presented without warranty and with no guarantees.\r\n
\r\n\r\n \r\n For decentralized finance contracting services, see: \r\n https://ellipticdefisolutions.com\r\n \r\n
\r\n\r\n \r\n To send an email to the owner of this site, please \r\n contact \r\n dailydefiorg@gmail.com
\r\n
\r\n\r\n Donation Addresses
\r\n \r\n ETH: 0x37172fA0316a06c6d5e2Bb00785e0f356D27CFF8\r\n xDai: 0x37172fA0316a06c6d5e2Bb00785e0f356D27CFF8\r\n BSC: 0x37172fA0316a06c6d5e2Bb00785e0f356D27CFF8\r\n \r\n \r\n )\r\n}\r\n\r\nexport const query = graphql`\r\n query {\r\n site {\r\n siteMetadata {\r\n title\r\n }\r\n }\r\n }\r\n`\r\n","import React from \"react\"\r\nimport styled from \"styled-components\"\r\nimport { useStaticQuery, Link, graphql } from \"gatsby\"\r\nimport \"@fontsource/montserrat\"\r\nimport \"./page-layout.css\"\r\n\r\nconst PageContainer = styled.div`\r\n font-family: 'Montserrat', sans-serif;\r\n display: flex;\r\n flex-direction: column;\r\n margin: 0 auto;\r\n max-width: 650px;\r\n min-height: calc(100vh - 2rem);\r\n padding: 1rem;\r\n\r\n @media (max-width: 540px) {\r\n padding-top: 0.3rem;\r\n }\r\n`\r\n\r\nconst Header = styled.div`\r\n display: flex;\r\n justify-content: space-between;\r\n align-items: center;\r\n`\r\n\r\nconst HeaderLeft = styled.div``\r\n\r\nconst HeaderRight = styled.div``\r\n\r\nconst SiteTitle = styled.h3``\r\n\r\nconst StyledLink = styled(Link)`\r\n text-decoration: none;\r\n`\r\n\r\nconst TwitterLink = styled.a``\r\n\r\nconst AboutLink = styled(Link)`\r\n padding-left: 2rem;\r\n text-decoration: none;\r\n`\r\n\r\nconst Body = styled.div``\r\n\r\nconst Footer = styled.div`\r\n flex-grow: 1;\r\n display: flex;\r\n justify-content: center;\r\n align-items: flex-end;\r\n padding-top: 1rem;\r\n`\r\n\r\nconst FooterText = styled.div`\r\n text-align: center;\r\n`\r\n\r\nexport default function PageLayout({ children, showAffiliateLink }) {\r\n\r\n const data = useStaticQuery(\r\n graphql`\r\n query {\r\n site {\r\n siteMetadata {\r\n title\r\n }\r\n }\r\n }\r\n `\r\n )\r\n\r\n return (\r\n