chore: change loading text to loading spinner

This commit is contained in:
ValdiANS
2026-01-26 20:56:12 +07:00
parent d3d3859021
commit 66c537ec10
+5 -1
View File
@@ -25,5 +25,9 @@ export default function Home() {
);
}
return <>Loading...</>;
return (
<main className='w-full h-full min-h-screen flex flex-row justify-center items-center'>
<span className='loading loading-spinner loading-lg'></span>
</main>
);
}