import { Box, Button, Dialog, styled, Typography } from '@mui/material'; import type { FC } from 'react'; import { ReactComponent as UnleashLogo } from 'assets/img/logoDarkWithText.svg'; import { ReactComponent as UnleashLogoWhite } from 'assets/img/logoWithWhiteText.svg'; import { ThemeMode } from '../common/ThemeMode/ThemeMode'; import onboardingConcepts from 'assets/img/onboardingConcepts.png'; import { ScreenReaderOnly } from '../common/ScreenReaderOnly/ScreenReaderOnly'; import { formatAssetPath } from 'utils/formatPath'; const StyledDialog = styled(Dialog)(({ theme }) => ({ '& .MuiDialog-paper': { borderRadius: theme.shape.borderRadiusLarge, width: '65vw', maxWidth: '1800px', backgroundColor: 'transparent', }, padding: 0, '& .MuiPaper-root > section': { overflowX: 'hidden', }, })); const StyledUnleashLogoWhite = styled(UnleashLogoWhite)({ width: '150px' }); const StyledUnleashLogo = styled(UnleashLogo)({ width: '150px' }); const ContentWrapper = styled(Box)(({ theme }) => ({ display: 'flex', gap: theme.spacing(4), flexDirection: 'column', padding: theme.spacing(4, 12), alignItems: 'center', backgroundColor: theme.palette.background.paper, })); const WelcomeLine = styled(Box)({ display: 'flex', alignItems: 'center', justifyContent: 'center', }); const StyledImg = styled('img')({ width: '100%', }); interface IWelcomeDialogProps { open: boolean; onClose: () => void; } export const WelcomeDialog: FC = ({ open, onClose }) => { return ( Welcome to } lightmode={} /> Here are the{' '} key concepts {' '} you'll need when working with Unleash

Environments

Environments represent different stages in your development lifecycle. The default environments are development and production.

Projects

Projects help you organize feature flags and define access for users and applications. SDKs use a combination of environment and project to retrieve feature flag configurations.

Feature flags

Feature flags exist within a project and have distinct configurations for each of the project's active environments.

Activation strategy

Activation strategies are rulesets that determine if a feature flag is enabled in a specific environment. You can configure multiple activation strategies per environment.

); };