File tree Expand file tree Collapse file tree
client/src/components/SetupOverlay Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,12 +14,20 @@ interface InitialActionsProps {
1414export 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+ > 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+ } ;
You can’t perform that action at this time.
0 commit comments