new design added

This commit is contained in:
Saimon8420 2025-02-09 11:40:26 +06:00
parent e803426e01
commit 20526b3628
2 changed files with 2 additions and 2 deletions

View file

@ -54,10 +54,11 @@ export const Home = () => {
}, [navigate, isLoading, data, projectData, projectLoading, canvas, selectedPanel]); }, [navigate, isLoading, data, projectData, projectLoading, canvas, selectedPanel]);
return ( return (
<div className="flex h-screen overflow-hidden relative"> <div className="flex h-screen overflow-hidden relative items-center justify-center">
{ {
isLoading && <p><Loader className="animate-spin mx-auto" /></p> isLoading && <p><Loader className="animate-spin mx-auto" /></p>
} }
{!isLoading && {!isLoading &&
<> <>
<Toaster /> <Toaster />

View file

@ -35,7 +35,6 @@ export const shapes = [
{ shape: 25400, source: "/assets/svgs/Group 25400.svg" }, { shape: 25400, source: "/assets/svgs/Group 25400.svg" },
{ shape: 25401, source: "/assets/svgs/Group 25401.svg" }, { shape: 25401, source: "/assets/svgs/Group 25401.svg" },
{ shape: 25402, source: "/assets/svgs/Group 25402.svg" }, { shape: 25402, source: "/assets/svgs/Group 25402.svg" },
{ shape: 25403, source: "/assets/svgs/Group 25403.svg" },
]; ];