// import Container from "@/components/reusableComponent/Container";
// import loadings from "@/public/assets/loadingan.svg";
// import Image from "next/image";
export default function Loading() {
  return (
    <>
      {/* <Container className="flex  items-center justify-center mt-[250px]">  
      <div className="relative">
        <div className="h-24 w-24 rounded-full border-t-4 border-b-4 border-primary animate-spin"></div>
        <div className="absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2">
          <div className="h-16 w-16 rounded-full border-t-4 border-b-4 border-primary animate-spin"></div>
        </div>
      </div>  

       <Image  src={loadings} alt="img" width={2000} height={2000} className="w-[250px] h-[250px] object-contain   repeat-infinite animate-bounce running" />  
  </Container> */}
    </>
  );
}
