diff --git a/src/pages/SingletonContextProvider.jsx b/src/pages/SingletonContextProvider.jsx index bb0f17a..eb8b07c 100644 --- a/src/pages/SingletonContextProvider.jsx +++ b/src/pages/SingletonContextProvider.jsx @@ -2,7 +2,7 @@ import { createContext, useState, useContext } from 'react'; import { useDisclosure } from '@chakra-ui/react' import { Modal, ModalOverlay, ModalContent, ModalHeader, ModalFooter, ModalBody, ModalCloseButton } from '@chakra-ui/react' -import { Text, Icon, Spacer, Button } from '@chakra-ui/react' +import { Heading, Text, Icon, Spacer, Button, Box, Grid } from '@chakra-ui/react' // Create a context const SingletonContext = createContext(); @@ -20,7 +20,6 @@ export function SingletonContextProvider({ children }) { } function openGetStartedModal() { - console.log('openGetStartedModal()'); getStartedDisclosure.onOpen(); } @@ -43,20 +42,36 @@ export function useSingletonContext() { export function GetStartedModal( {isOpen, onOpen, onClose}) { return ( - + - - Title - Get Started + + + Get Started with PipeRider + - - Modal Body + + {/* TODO: Make this ROW Based on Mobile - e.g. Stack with relative directions and Boxes with Flex 1. */} + + + Local or Self-Hosted + PipeRider is open source and free. Use it locally, self-host it, or add Cloud hosting later on. + + + + + Cloud + PipeRider Cloud takes the hassle out of hosting PipeRider. This makes sharing reports easier. + + + + - - - + )