import React from "react"; import styled from "styled-components"; import Spinner from "components/ads/Spinner"; import { Classes } from "components/ads/common"; import { useDispatch, useSelector } from "react-redux"; import AnalyticsUtil from "utils/AnalyticsUtil"; import { AppState } from "reducers"; import { showOnboardingLoader } from "actions/onboardingActions"; const Wrapper = styled.div` height: calc(100vh - ${(props) => props.theme.smallHeaderHeight}); width: 100%; display: flex; justify-content: center; align-items: center; flex-direction: column; background-color: white; .${Classes.SPINNER} { width: 43px; height: 43px; margin-top: 24px; circle { stroke: #457ae6; } } `; const Image = styled.img` width: 601px; height: 341px; margin-top: 24px; object-fit: scale-down; @media only screen and (min-height: 800px) { height: 441px; width: 801px; } `; const SubTitle = styled.div` font-size: 12px; text-align: center; `; const Title = styled.div` font-size: 24px; font-weight: 500; text-align: center; `; const Description = styled.div` font-size: 16px; margin-top: 18px; width: 490px; margin-top: 24px; @media only screen and (min-height: 800px) { width: 630px; } `; const StyledButton = styled.button` color: white; background-color: #f3672a; font-weight: bold; font-size: 17px; padding: 12px 24px; border: none; cursor: pointer; margin-top: 24px; `; function Welcome() { const datasourceCreated = useSelector( (state: AppState) => state.ui.onBoarding.createdDBQuery, ); const dispatch = useDispatch(); return ( WHAT WE’LL BUILD 🦸🏻‍♂ Super Standup App Superheroes much like engineers have to coordinate their daily plans so that no villain (bug) gets away! However, all heroes hate morning meetings so a daily standup app is just what we need. {datasourceCreated ? ( { AnalyticsUtil.logEvent("ONBOARDING_START_BUILDING"); dispatch(showOnboardingLoader(false)); }} > Start Building ) : ( )} ); } export default Welcome;