mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 08:57:15 -05:00
Port BR-95 desktop to Next.js components
This commit is contained in:
20
br95/components/shared/BootScreen.tsx
Normal file
20
br95/components/shared/BootScreen.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
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">BR‑95 Edition · Safe Passage Through The Chaos</div>
|
||||
<div className="boot-loading">System Loading</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user