import { NewProjectPrice } from './RestoreToNewProject.utils' export const AdditionalMonthlySpend = ({ additionalMonthlySpend, }: { additionalMonthlySpend: NewProjectPrice }) => { return (

The new project will start with the same compute size as your current project, but the disk size will be slightly larger (1.25×) to ensure the restore completes successfully. You will be able to update the compute size and increase the disk size after the new project is created in{' '} Project Settings > Compute and Disk

Additional Monthly Compute

${additionalMonthlySpend.computePrice}

Additional Monthly Disk

${additionalMonthlySpend.diskPrice}

Total

${additionalMonthlySpend.computePrice + additionalMonthlySpend.diskPrice}

) }