feat: add help text

This commit is contained in:
Pihkaal
2024-09-11 17:43:53 +02:00
parent 79902cb7f1
commit f9f1fda026

View File

@@ -20,7 +20,7 @@ export const Off = () => {
}, [booting]); }, [booting]);
return ( return (
<div className="flex h-screen w-screen items-center justify-center bg-black"> <div className="flex h-screen w-screen flex-col items-center justify-center bg-black">
<button <button
className={`drop-shadow-white cursor-pointer transition-all ${ className={`drop-shadow-white cursor-pointer transition-all ${
booting ? "animate-disappear" : "animate-breathing" booting ? "animate-disappear" : "animate-breathing"
@@ -34,6 +34,10 @@ export const Off = () => {
/> />
</svg> </svg>
</button> </button>
<p className="absolute bottom-2 left-1/2 -translate-x-1/2 text-sm text-gray-400 text-white">
This website is primarly made for desktop
</p>
</div> </div>
); );
}; };