Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions components/project/MilestoneSubmissionSuccess.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,25 +15,22 @@ const MilestoneSubmissionSuccess: React.FC<MilestoneSubmissionSuccessProps> = ({
return (
<div className='min-h-screen bg-black flex items-center justify-center p-4'>
<div className='max-w-md w-full text-center space-y-8'>
{/* Title */}

<h1 className='text-3xl font-bold text-white'>Proof Submitted!</h1>

{/* Success Icon */}
<div className='flex justify-center'>
<div className='w-20 h-20 rounded-full bg-[#A7F950] flex items-center justify-center'>
<Check className='w-10 h-10 text-white' />
</div>
</div>

{/* Main Message */}
<div className='space-y-4'>
<p className='text-white text-base leading-relaxed'>
Your project has been submitted and is now under admin review.
You'll receive an update within 72 hours. Once approved, your
project will proceed to public validation.
</p>

{/* Tracking Information */}
<p className='text-white text-base'>
You can track the status of your submission anytime on the{' '}
<Link
Expand All @@ -45,7 +42,6 @@ const MilestoneSubmissionSuccess: React.FC<MilestoneSubmissionSuccessProps> = ({
</p>
</div>

{/* Continue Button */}
<div className='pt-4'>
<BoundlessButton
onClick={onContinue}
Expand Down
Loading