import chalk from 'chalk' import chalkAnimation from 'chalk-animation' import { sleep } from './sleep' export async function welcome() { const rainbowTitle = chalkAnimation.rainbow(` /$$ /$$ | $$ | $$ | $$$$$$$ | $$ /$$$$$$$$ /$$$$$$ | $$__ $$| $$|____ /$$/ /$$__ $$ | $$ | $$| $$ /$$$$/ | $$$$$$$$ | $$ | $$| $$ /$$__/ | $$_____/ | $$$$$$$/| $$ /$$$$$$$$| $$$$$$$ |_______/ |__/|________/ ________/ `) await sleep() rainbowTitle.stop() }