order detail

This commit is contained in:
hamid zarghami
2025-08-26 15:58:24 +03:30
parent 90bf32f8fd
commit 09a210c943
6 changed files with 634 additions and 3 deletions
+15
View File
@@ -0,0 +1,15 @@
'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