mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-07-01 21:28:23 +00:00
feat: add loading state and full-page loader component; update payment page and application layout to improve user experience
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 7m23s
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 7m23s
This commit is contained in:
9
components/full-page-loader.tsx
Normal file
9
components/full-page-loader.tsx
Normal 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>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user