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 }) => {
if (!skipDescription) {
return (
);
}
return (
);
};