login page added

This commit was merged in pull request #1.
This commit is contained in:
victorAnumudu
2025-02-03 08:13:20 +01:00
parent 1f6d18430a
commit b8097fea92
20 changed files with 277 additions and 25 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>
)
}