diff --git a/frontend/pages/index.js b/frontend/pages/index.js index b5d2c269..ba3c0f76 100644 --- a/frontend/pages/index.js +++ b/frontend/pages/index.js @@ -128,6 +128,7 @@ const assets = { cryptoTraders: `${AWS_ASSETS_PATH}/crypto+traders.png`, smartDevelopers: `${AWS_ASSETS_PATH}/smart+contract+developers.png`, cointelegraph: `${AWS_ASSETS_PATH}/featured_by/Cointelegraph_logo.png`, + forte: `${AWS_ASSETS_PATH}/featured_by/forte_logo.png`, educativesessions: `${AWS_ASSETS_PATH}/featured_by/educative_logo.png`, cryptoinsiders: `${AWS_ASSETS_PATH}/featured_by/crypto_insiders.png`, cryptoslate: `${AWS_ASSETS_PATH}/featured_by/cs-media-logo-light.png`, @@ -135,7 +136,7 @@ const assets = { ethereumBlackLogo: `${AWS_ASSETS_PATH}/eth-diamond-black.png`, ethereumRainbowLogo: `${AWS_ASSETS_PATH}/eth-diamond-rainbow.png`, maticLogo: `${AWS_ASSETS_PATH}/matic-token-inverted-icon.png`, - erc20: `${AWS_ASSETS_PATH}/ERC 20.png`, + lender: `${AWS_ASSETS_PATH}/lender.png`, DAO: `${AWS_ASSETS_PATH}/DAO .png`, NFT: `${AWS_ASSETS_PATH}/NFT.png`, bc101: `${AWS_ASSETS_PATH}/featured_by/blockchain101_logo.png`, @@ -503,17 +504,17 @@ const Homepage = () => { - Bridges + Engine - Open up your economy to Ethereum’s rich DeFi ecosystem, - no matter which chain you live on. + Create and manage tokens with custom mechanics specific + to your project. @@ -603,17 +604,26 @@ const Homepage = () => { name="Laguna games" caseURL="" ImgURL={assets["laguna"]} + boxURL="https://laguna.games/" /> + @@ -739,29 +749,28 @@ const Homepage = () => { }} elementName={"element3"} colorScheme="orange" - badge={`Moonstream bridges`} + badge={`Moonstream engine`} bullets={[ { - text: `Make it easy for participants to bring value into your economy from other blockchains.`, + text: `Deploy customizable and upgradable characters, items, and currencies into your economy`, icon: GiCrossedChains, color: "orange.50", bgColor: "orange.900", }, { - text: `Make your tokens and NFTs multi-chain.`, + text: `Monitor interactions between these tokens`, icon: GiChainedHeart, color: "orange.50", bgColor: "orange.900", }, { - text: `Run the cost-intensive parts of your economy off of Ethereum while tapping into Ethereum’s DeFi ecosystem. - `, + text: `Secure the tokens with Moonstream defense bots.`, icon: GiChaingun, color: "orange.50", bgColor: "orange.900", }, ]} - imgURL={assets["erc20"]} + imgURL={assets["lender"]} /> { name="cointelegraph" caseURL="" ImgURL={assets["cointelegraph"]} + boxURL="https://cointelegraph.com/news/17-of-addresses-snapped-up-80-of-all-ethereum-nfts-since-april" /> diff --git a/frontend/pages/team/index.js b/frontend/pages/team/index.js index 508e680d..73ca5348 100644 --- a/frontend/pages/team/index.js +++ b/frontend/pages/team/index.js @@ -248,8 +248,8 @@ const Product = () => { avatarURL={assets["dragonfly"]} name={"Tim Pechersky"} atName={"@peersky"} - content={`Spectral hopper. Hes special ability to precieve world trough spectral domain. Occasionaly - shifts in to time domain to spend some in doing flow + content={`Spectral hopper. Has special ability to perceive world trough spectral domain. Occasionaly + shifts in time domain to spend some in doing flow arts, surfing, and connecting with nature.`} /> { +const TrustedBadge = ({ + name, + caseURL, + ImgURL, + scale, + isGrayScale, + boxURL, +}) => { const _scale = scale ?? 1; return ( - - {name} - {caseURL && ( - // - + + - {`Read more >`} - - // - )} - + {name} + {caseURL && ( + // + + {`Read more >`} + + // + )} + + + ); }; export default TrustedBadge;