first commit

This commit is contained in:
CHIEFSOFT\ameye
2025-07-21 05:51:52 -04:00
commit 7e28fc8f51
114 changed files with 23749 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import React from 'react'
import { FaCircleNotch } from "react-icons/fa";
export default function PageLoader() {
return (
<div className="w-full h-full fixed top-0 left-0 bg-white opacity-75 z-50">
<div className="flex justify-center items-center mt-[50vh]">
<FaCircleNotch className='text-5xl text-violet-600 animate-spin' />
</div>
</div>
)
}