login page added

This commit is contained in:
victorAnumudu
2025-02-10 21:19:48 +01:00
parent 9ef6370717
commit d382cc436a
16 changed files with 196 additions and 40 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>
)
}