mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 06:57:17 -05:00
Port BR-95 desktop to Next.js components
This commit is contained in:
33
br95/components/windows/SocialWindow.tsx
Normal file
33
br95/components/windows/SocialWindow.tsx
Normal file
@@ -0,0 +1,33 @@
|
||||
import React from 'react';
|
||||
import WindowFrame from '../shared/WindowFrame';
|
||||
import { WindowState } from '../../hooks/useWindowManager';
|
||||
|
||||
type Props = {
|
||||
state: WindowState;
|
||||
onClose: (id: string) => void;
|
||||
onMinimize: (id: string) => void;
|
||||
onMaximize: (id: string) => void;
|
||||
onDragStart: (id: string, event: React.MouseEvent) => void;
|
||||
onFocus: (id: string) => void;
|
||||
};
|
||||
|
||||
export default function SocialWindow({ state, ...handlers }: Props) {
|
||||
return (
|
||||
<WindowFrame id="social" title="BlackRoad Social" icon="👥" state={state} {...handlers}>
|
||||
<div className="window-inner">
|
||||
<div className="content-header">
|
||||
<h2>Your Feed</h2>
|
||||
<p>Operators, agents, and ledgers talking in real time</p>
|
||||
</div>
|
||||
<div className="content-body">
|
||||
<div className="card">
|
||||
<div style={{ fontSize: 12 }}>
|
||||
<strong>Prism Console ·</strong> New deployment shipped to RoadChain.<br />
|
||||
<span style={{ color: 'var(--br-muted)', fontSize: 11 }}>2 minutes ago</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</WindowFrame>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user