From 6e68cd9f929498753a8232458d85e7edeba42917 Mon Sep 17 00:00:00 2001 From: Tim Pechersky Date: Tue, 3 Aug 2021 22:22:50 +0800 Subject: [PATCH 1/4] remove slack --- frontend/src/components/Footer.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/frontend/src/components/Footer.js b/frontend/src/components/Footer.js index 5f0d2006..0049984d 100644 --- a/frontend/src/components/Footer.js +++ b/frontend/src/components/Footer.js @@ -8,11 +8,7 @@ const ICONS = [ link: "https://discord.gg/FetK5BxD", }, - { social: "twit", link: "https://twitter.com/Bugout_dev" }, - { - social: "slack", - link: "https://join.slack.com/t/bugout-dev/shared_invite/zt-fhepyt87-5XcJLy0iu702SO_hMFKNhQ", - }, + { social: "twit", link: "https://twitter.com/moonstreamto" }, ]; const SITEMAP_FLEX_PROPS = { @@ -98,7 +94,7 @@ const Footer = () => ( fontSize="xl" fontWeight="500" > - Stay in touch + Stay in touch{` `} 💙 From 6a45dd622b0b09f2fa6f61c929136cf324875839 Mon Sep 17 00:00:00 2001 From: Tim Pechersky Date: Tue, 3 Aug 2021 22:23:14 +0800 Subject: [PATCH 2/4] landing page account button --- frontend/src/components/LandingNavbar.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/LandingNavbar.js b/frontend/src/components/LandingNavbar.js index d97d2845..a65a9f38 100644 --- a/frontend/src/components/LandingNavbar.js +++ b/frontend/src/components/LandingNavbar.js @@ -87,10 +87,21 @@ const LandingNavbar = () => { Log in )} - {ui.isLoggedIn && } + {ui.isLoggedIn && ( + + )} )} + {ui.isLoggedIn && ui.isMobileView && ( + <> + + + + )} ); From 76691332ef6467e36545b860359fb390d56651b9 Mon Sep 17 00:00:00 2001 From: Tim Pechersky Date: Tue, 3 Aug 2021 22:23:27 +0800 Subject: [PATCH 3/4] clean up --- frontend/src/components/Scrollable.js | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/components/Scrollable.js b/frontend/src/components/Scrollable.js index 65d3f5fe..4ab9f6a7 100644 --- a/frontend/src/components/Scrollable.js +++ b/frontend/src/components/Scrollable.js @@ -19,7 +19,6 @@ const Scrollable = (props) => { const handleScroll = (e) => { const currentScroll = Math.ceil(getScrollPrecent(e) / 10); if (currentScroll > scrollDepth) { - // withTracking( setScrollDepth(currentScroll); isLoaded && mixpanel.people.increment({ From a23da03a2b739c2800723b10315fde4a3c700037 Mon Sep 17 00:00:00 2001 From: Tim Pechersky Date: Tue, 3 Aug 2021 22:24:14 +0800 Subject: [PATCH 4/4] brand name changes -> moonstream --- frontend/src/components/SignIn.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/SignIn.js b/frontend/src/components/SignIn.js index 80b9a5ad..d9d680cd 100644 --- a/frontend/src/components/SignIn.js +++ b/frontend/src/components/SignIn.js @@ -38,7 +38,7 @@ const SignIn = ({ toggleModal }) => { Login now - To your Bugout account + To your Moonstream account
@@ -49,7 +49,7 @@ const SignIn = ({ toggleModal }) => { autoComplete="username" variant="filled" colorScheme="primary" - placeholder="Your Bugout username" + placeholder="Your Moonstream username" name="username" {...register("username", { required: true })} ref={register({ required: "Username is required!" })} @@ -64,7 +64,7 @@ const SignIn = ({ toggleModal }) => {