Files
blackroad-operating-system/br95/components/shared/BootScreen.tsx
2025-11-20 19:11:04 -06:00

21 lines
615 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import React from 'react';
type Props = {
bootActive: boolean;
};
export default function BootScreen({ bootActive }: Props) {
return (
<div className="boot-screen" id="boot" style={{ pointerEvents: bootActive ? 'auto' : 'none' }}>
<div className="boot-logo-container">
<div className="boot-logo">
<div className="boot-road"></div>
</div>
<div className="boot-title">BlackRoad OS</div>
<div className="boot-sub">BR95 Edition · Safe Passage Through The Chaos</div>
<div className="boot-loading">System Loading</div>
</div>
</div>
);
}