This template comes with preloader component. You can pass variant
and type
props. You can find it in src/components/Preoloader
. For list of all available types please follow SpinKit documentation.
SpinKit uses hardware accelerated (translate and opacity) CSS animations to create smooth and easily customizable animations.
Read more about this great plugin at its Repository home.
import Preloader from "../components/Preloader"
export default function page(props) {
return(
<Preloader type="pulse" variant="success" />
)
}