import { Box, Text } from 'folds'; import React, { ReactNode } from 'react'; import classNames from 'classnames'; import * as patternsCSS from '../../styles/Patterns.css'; import * as css from './SplashScreen.css'; type SplashScreenProps = { children: ReactNode; }; export function SplashScreen({ children }: SplashScreenProps) { return ( {children} Lotus Chat ); }