Hey is a decentralized and permissionless social media app built with Lens Protocol 馃尶
1import { STATIC_IMAGES_URL } from "@hey/data/constants";
2import { Image } from "@/components/Shared/UI";
3
4const FullPageLoader = () => {
5 return (
6 <div className="grid h-screen place-items-center">
7 <Image
8 alt="Logo"
9 className="size-28"
10 height={112}
11 src={`${STATIC_IMAGES_URL}/app-icon/0.png`}
12 width={112}
13 />
14 </div>
15 );
16};
17
18export default FullPageLoader;