Skip to content

Commit 9d91444

Browse files
authored
features (#451)
1 parent bf355be commit 9d91444

1 file changed

Lines changed: 11 additions & 3 deletions

File tree

client/src/components/SetupOverlay/InitialActions.tsx

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,20 @@ interface InitialActionsProps {
1414
export const InitialActions: React.FC<InitialActionsProps> = ({ onCreateClick, onJoinClick }) => {
1515
return (
1616
<div className="initial-actions">
17+
{/* 1. Added a custom heading/subtext to notice right away */}
18+
<div style={{ marginBottom: '20px', textAlign: 'center' }}>
19+
<p style={{ color: '#00ff00', fontSize: '14px', fontFamily: 'monospace' }}>
20+
&gt; SYSTEM STATUS: READY_TO_CONNECT
21+
</p>
22+
</div>
23+
1724
<Button variant="primary" size="large" onClick={onCreateClick}>
18-
Create New Channel
25+
Start New Secure Chat
1926
</Button>
27+
2028
<Button variant="secondary" size="large" onClick={onJoinClick}>
21-
Already have a Hash?
29+
Have an invite hash?
2230
</Button>
2331
</div>
2432
);
25-
};
33+
};

0 commit comments

Comments
 (0)