-
Notifications
You must be signed in to change notification settings - Fork 508
/
Copy path404.js
72 lines (66 loc) · 2.62 KB
/
404.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import Head from "next/head";
import { getMenu } from "../lib/api";
import Layout from "../components/layouts/globalTemplate";
import SideBar from "../components/navigation/sideBar";
import Footer from "../components/navigation/footer";
import Spacer from "../components/utilities/spacer";
import SummaryTiles from "../components/summaryTiles";
import styles from "../components/layouts/container.module.css";
export default function Home({ window, menu }) {
return (
<Layout window={window}>
<Head>
<title>404 | Streamlit Docs</title>
<link rel="icon" href="/favicon.svg" />
<link rel="alternate icon" href="/favicon32.ico" />
<meta name="theme-color" content="#ffffff" />
<meta
content="Streamlit is an open-source app framework for Machine Learning and Data Science teams. Create beautiful data apps in hours, not weeks. All in pure Python. All for free."
name="description"
/>
<meta content="Streamlit Docs" property="og:title" />
<meta
content="Streamlit is an open-source app framework for Machine Learning and Data Science teams. Create beautiful data apps in hours, not weeks. All in pure Python. All for free."
property="og:description"
/>
<meta content="Streamlit Docs" name="twitter:title" />
<meta
content="Streamlit is an open-source app framework for Machine Learning and Data Science teams. Create beautiful data apps in hours, not weeks. All in pure Python. All for free."
name="twitter:description"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://docs.streamlit.io/" />
<meta content="summary_large_image" name="twitter:card" />
<meta
property="og:image"
content={`https://${process.env.NEXT_PUBLIC_HOSTNAME}/sharing-image-facebook.jpg`}
/>
<meta
name="twitter:image"
content={`https://${process.env.NEXT_PUBLIC_HOSTNAME}/sharing-image-twitter.jpg`}
/>
</Head>
<section className={styles.Container}>
<SideBar menu={menu} slug={["404"]} />
<section className={styles.InnerContainer}>
<article>
<h1>Page not found</h1>
<p>
Try using the search bar, above, or check out one of the pages
below:
</p>
<SummaryTiles />
</article>
</section>
<Footer />
</section>
</Layout>
);
}
export async function getStaticProps(context) {
const props = {};
props["menu"] = getMenu();
return {
props: props,
};
}