import { CreatingSite } from '@auto-launch/components/CreatingSite'; import { DescriptionGathering } from '@auto-launch/components/DescriptionGathering'; import { motion } from 'framer-motion'; const MAX_HEIGHT_SMALL = 400; export const Launch = ({ skipDescription, lastHeight }) => { const widthClass = 'mx-auto w-full max-w-2xl'; if (!skipDescription) { return ( ); } return ( ); };