16 lines
483 B
TypeScript
16 lines
483 B
TypeScript
'use client'
|
||
import { FC } from 'react'
|
||
|
||
const PageLoading: FC = () => {
|
||
return (
|
||
<div className="flex items-center justify-center py-20">
|
||
<div className="flex flex-col items-center gap-4">
|
||
<div className="size-10 border-4 border-primary/20 border-t-primary rounded-full animate-spin"></div>
|
||
<p className="text-gray-600">در حال بارگذاری...</p>
|
||
</div>
|
||
</div>
|
||
)
|
||
}
|
||
|
||
export default PageLoading
|