feat: add loading state and full-page loader component; update payment page and application layout to improve user experience

This commit is contained in:
2025-05-31 12:37:46 +05:00
parent c705addccc
commit bed426a6b4
14 changed files with 84 additions and 18 deletions
+9
View File
@@ -0,0 +1,9 @@
import React from 'react'
import { Loader2 } from 'lucide-react'
export default function FullPageLoader() {
return (
<div className='flex items-center justify-center h-screen'>
<Loader2 className='animate-spin' />
</div>
)
}