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{` `} 💙 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 && ( + <> + + + + )} ); 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({ 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 }) => {