File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 99 < link rel ="preconnect " href ="https://fonts.gstatic.com " crossorigin >
1010 < link href ="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap " rel ="stylesheet ">
1111 < title > instructure.ai</ title >
12+ <!--//
13+ Hey, what are you doing here? 👋
14+ https://www.instructure.com/careers
15+ //-->
1216</ head >
1317
1418< body >
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import "./App.css";
33import { InstUISettingsProvider } from "@instructure/emotion" ;
44import { darken } from "@instructure/ui-color-utils" ;
55import { canvas } from "@instructure/ui-themes" ;
6- import { type FC , useState } from "react" ;
6+ import { type FC , useEffect , useState } from "react" ;
77import { Brands } from "./assets/Features" ;
88import Banner from "./components/Banner" ;
99import HelpTray from "./components/HelpTray" ;
@@ -39,6 +39,13 @@ const App: FC = () => {
3939 } ,
4040 } ;
4141
42+ useEffect ( ( ) => {
43+ console . info (
44+ "Hey, what are you doing here? 👋\n" ,
45+ "https://www.instructure.com/careers" ,
46+ ) ;
47+ } , [ ] ) ;
48+
4249 const [ isTrayOpen , setIsTrayOpen ] = useState < boolean > ( false ) ;
4350 const [ hasSuccess , setSuccess ] = useState < boolean > ( true ) ;
4451 const [ hasError , setError ] = useState < string | null > ( null ) ;
You can’t perform that action at this time.
0 commit comments