CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/frontend/app/kiosk-mode-banner.tsx
Views: 687
1
/*
2
* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.
3
* License: MS-RSL – see LICENSE.md for details
4
*/
5
6
import { React } from "../app-framework";
7
import { SiteName } from "../customize";
8
9
import { APP_LOGO_WHITE } from "../art";
10
11
export const KioskModeBanner: React.FC = () => {
12
return (
13
<div id={"smc-startup-banner"}>
14
<div>
15
<img src={APP_LOGO_WHITE} />
16
</div>
17
<div
18
className={"message ready"}
19
style={{
20
margin: "auto",
21
textAlign: "center",
22
fontSize: "36px",
23
color: "#888",
24
}}
25
>
26
<SiteName />
27
</div>
28
</div>
29
);
30
};
31
32