File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,19 @@ import PreRegister from './preregister';
44import 'bootstrap/dist/css/bootstrap.css' ;
55import './index.scss' ;
66
7+ const hiringMessage = `Hey, you.
8+ You’re finally awake.
9+ You were trying to see the code, right?
10+ Walked right into that hiring message, same as us.
11+ If you’d like to work on this website and other cool projects with hackathons, send an email over to [email protected] !` 12+
13+ console . log ( hiringMessage ) ;
14+
15+ //comment generated via javascript instead of in HTML so the hiring message text is only in one place
16+ const comment = document . createComment ( "\n" + hiringMessage . toString ( ) + "\n" ) ;
17+ document . insertBefore ( comment , document . firstChild ) ;
718
819ReactDOM . render (
920 < PreRegister /> ,
1021 document . getElementById ( 'root' ) ,
1122) ;
12-
You can’t perform that action at this time.
0 commit comments