add squircle logo

This commit is contained in:
KMKoushik
2024-10-27 08:33:06 +11:00
parent ae59884994
commit c61e4b5fb1
7 changed files with 46 additions and 7 deletions

View File

@@ -1,9 +1,17 @@
import { Logo } from "@unsend/ui/src/logo";
import { useTheme } from "@unsend/ui";
import Image from "next/image";
export const FullScreenLoading = () => {
const { resolvedTheme } = useTheme();
return (
<div className="flex items-center justify-center min-h-screen">
<Logo className="w-10 h-10" />
<Image
src={"/logo-light.png"}
alt="Unsend"
width={45}
height={45}
className="mx-auto"
/>
</div>
);
};