Skip to content

Commit 74d5743

Browse files
committed
easter eggs
1 parent 450c66c commit 74d5743

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

index.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
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>

src/App.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import "./App.css";
33
import { InstUISettingsProvider } from "@instructure/emotion";
44
import { darken } from "@instructure/ui-color-utils";
55
import { canvas } from "@instructure/ui-themes";
6-
import { type FC, useState } from "react";
6+
import { type FC, useEffect, useState } from "react";
77
import { Brands } from "./assets/Features";
88
import Banner from "./components/Banner";
99
import 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);

0 commit comments

Comments
 (0)