From 792dfd55d6c9130f254ead3ba432f08474bded80 Mon Sep 17 00:00:00 2001 From: Tim Pechersky Date: Tue, 15 Mar 2022 17:15:50 +0000 Subject: [PATCH 1/4] update landing page --- frontend/pages/index.js | 41 ++++++++---- frontend/src/components/TrustedBadge.js | 85 +++++++++++++++---------- 2 files changed, 80 insertions(+), 46 deletions(-) diff --git a/frontend/pages/index.js b/frontend/pages/index.js index b5d2c269..098219e0 100644 --- a/frontend/pages/index.js +++ b/frontend/pages/index.js @@ -19,6 +19,8 @@ import { GridItem, SimpleGrid, Button, + LinkBox, + LinkOverlay, Image as ChakraImage, } from "@chakra-ui/react"; import dynamic from "next/dynamic"; @@ -128,6 +130,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 +138,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 +506,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 +606,26 @@ const Homepage = () => { name="Laguna games" caseURL="" ImgURL={assets["laguna"]} + boxURL="https://laguna.games/" /> + @@ -739,29 +751,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/src/components/TrustedBadge.js b/frontend/src/components/TrustedBadge.js index f6dec843..1ce738b7 100644 --- a/frontend/src/components/TrustedBadge.js +++ b/frontend/src/components/TrustedBadge.js @@ -1,43 +1,60 @@ import { React } from "react"; -import { Flex, Image, Link } from "@chakra-ui/react"; +import { Flex, Image, Link, LinkBox, LinkOverlay } from "@chakra-ui/react"; -const TrustedBadge = ({ name, caseURL, ImgURL, scale, isGrayScale }) => { +const TrustedBadge = ({ + name, + caseURL, + ImgURL, + scale, + isGrayScale, + boxURL, +}) => { const _scale = scale ?? 1; return ( - - {name} - {caseURL && ( - // - + - {`Read more >`} - - // - )} - + {name} + {caseURL && ( + // + + {`Read more >`} + + // + )} + + + ); }; export default TrustedBadge; From dd57dfb4ffb931245e5dbe1dc7706571fb2510f4 Mon Sep 17 00:00:00 2001 From: Tim Pechersky Date: Tue, 15 Mar 2022 17:24:14 +0000 Subject: [PATCH 2/4] team page update --- frontend/pages/team/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.`} /> Date: Tue, 15 Mar 2022 17:25:22 +0000 Subject: [PATCH 3/4] happy linter - happy life --- frontend/pages/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/pages/index.js b/frontend/pages/index.js index 098219e0..acb9214c 100644 --- a/frontend/pages/index.js +++ b/frontend/pages/index.js @@ -19,8 +19,6 @@ import { GridItem, SimpleGrid, Button, - LinkBox, - LinkOverlay, Image as ChakraImage, } from "@chakra-ui/react"; import dynamic from "next/dynamic"; From 56b82c9a19debacc7894bda62df479ef85a21c67 Mon Sep 17 00:00:00 2001 From: Tim Pechersky Date: Tue, 15 Mar 2022 21:42:31 +0000 Subject: [PATCH 4/4] improvements --- frontend/pages/index.js | 4 ++-- frontend/src/components/TrustedBadge.js | 10 ++-------- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/frontend/pages/index.js b/frontend/pages/index.js index acb9214c..ba3c0f76 100644 --- a/frontend/pages/index.js +++ b/frontend/pages/index.js @@ -617,7 +617,7 @@ const Homepage = () => { scale={1.5} name="orangedao" ImgURL={assets["orangedao"]} - boxURL="https://game7.io/" + boxURL="https://lfg.orangedao.xyz/" /> { scale={1.5} name="bc101" ImgURL={assets["bc101"]} - boxURL="https://blockchain101.com/courses/" + boxURL="https://blockchain101.com/" /> { const _scale = scale ?? 1; return ( - - + +