finished reset password & other changes

This commit is contained in:
2024-04-24 22:37:55 +03:00
parent b1ad7b5c3e
commit 53cadc289a
58 changed files with 1520 additions and 349 deletions

20
components/loading.tsx Normal file
View File

@@ -0,0 +1,20 @@
'use client'
import { Grid } from 'react-loader-spinner'
export function Loading () {
return (
<h1>
<Grid
visible={true}
height="666"
width="666"
color="#4fa94d"
ariaLabel="grid-loading"
radius="12.5"
wrapperStyle={{}}
wrapperClass="grid-wrapper"
/>
</h1>
)
}