Files
lume/src/app/auth/lock.tsx
T
2023-09-28 14:00:52 +07:00

11 lines
204 B
TypeScript

export function LockScreen() {
return (
<div
className="h-full w-full bg-cover bg-center"
style={{ backgroundImage: 'url(/wallpapers/1.png)' }}
>
<p>TODO</p>
</div>
);
}