10 lines
357 B
TypeScript
10 lines
357 B
TypeScript
import { ConstellationScene } from '@/features/lobby-starfield';
|
|
|
|
export function LobbyBackgroundWidget() {
|
|
return (
|
|
<div className="pointer-events-none fixed inset-0 z-0 overflow-hidden bg-[radial-gradient(ellipse_at_center,_var(--tw-gradient-stops))] from-slate-900 via-slate-950 to-black lg:left-72">
|
|
<ConstellationScene />
|
|
</div>
|
|
);
|
|
}
|