@openstack_dev/gatsby-theme-marketing-oif-core 1.0.24 → 1.0.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 310 310">
3
+ <!-- Generator: Adobe Illustrator 29.3.0, SVG Export Plug-In . SVG Version: 2.1.0 Build 146) -->
4
+ <defs>
5
+ <style>
6
+ .st0 {
7
+ fill: #eaeaea;
8
+ }
9
+ </style>
10
+ </defs>
11
+ <polygon class="st0" points="89.1 79.5 203.8 229.6 220.9 229.6 107.1 79.5 89.1 79.5"/>
12
+ <path class="st0" d="M277.2,0H32.8C14.8,0,0,14.8,0,32.8v244.3c0,18,14.8,32.8,32.8,32.8h244.3c18,0,32.8-14.8,32.8-32.8V32.8c0-18-14.8-32.8-32.8-32.8ZM193.6,248l-48.3-64.9-57.5,64.9h-31.2l72.8-83.9L52.2,62h64.6l44.8,58.8,4.4-3.5,48.3-55.3h31.2l-68.3,78.5,80.6,107.5h-64.1Z"/>
13
+ </svg>
@@ -1 +1 @@
1
- { "staticJsonFilesBuildTime": [], "lastBuild": 1716307121878 }
1
+ { "staticJsonFilesBuildTime": [], "lastBuild": 1740420798753 }
Binary file
Binary file
@@ -0,0 +1,71 @@
1
+ import React from "react";
2
+ import { ThemeProvider } from "@mui/material/styles";
3
+ import CssBaseline from "@mui/material/CssBaseline";
4
+ import { Box, Typography } from "@mui/material";
5
+ import theme404 from "../themes/404theme";
6
+ import Link from "../components/Link";
7
+
8
+ import styles from "../styles/404.module.scss";
9
+
10
+ function NotFoundPage() {
11
+ return (
12
+ <ThemeProvider theme={theme404}>
13
+ <CssBaseline />
14
+ <Box className={styles.background}>
15
+ <Box className={styles.wrapper}>
16
+ <Box className={styles.content}>
17
+ <Typography variant="h6" component="h6">
18
+ Not this cat, Ocata is fine. YOU are lost.
19
+ </Typography>
20
+ <Typography variant="h6" component="h6">
21
+ You’ve found our 404 page.
22
+ </Typography>
23
+ <Typography variant="h6" component="h6">
24
+ Find another page or just go&nbsp;
25
+ <Link to="https://www.openstack.org">home</Link>
26
+ .
27
+ </Typography>
28
+ </Box>
29
+ <ul>
30
+ <li>
31
+ <Link to="/software/">Software</Link>
32
+ </li>
33
+ <li>
34
+ <Link to="/user-stories/">Users</Link>
35
+ </li>
36
+ <li>
37
+ <Link to="/community/">Community</Link>
38
+ </li>
39
+ <li>
40
+ <Link to="/marketplace/">Marketplace</Link>
41
+ </li>
42
+ <li>
43
+ <Link to="/community/events/">Events</Link>
44
+ </li>
45
+ <li>
46
+ <Link to="/learn/">Learn</Link>
47
+ </li>
48
+ <li>
49
+ <Link to="https://docs.openstack.org/">Docs</Link>
50
+ </li>
51
+ <li>
52
+ <Link to="https://www.openstack.org">Home</Link>
53
+ </li>
54
+ <li>
55
+ <Link
56
+ to="https://www.youtube.com/results?search_query=cat+videos"
57
+ style={{ whiteSpace: "nowrap" }}
58
+ >
59
+ Cat
60
+ <span style={{ marginLeft: "0.5em" }} />
61
+ videos
62
+ </Link>
63
+ </li>
64
+ </ul>
65
+ </Box>
66
+ </Box>
67
+ </ThemeProvider>
68
+ );
69
+ }
70
+
71
+ export default NotFoundPage;
@@ -0,0 +1,132 @@
1
+ .background {
2
+ background: url(../images/404-bg.jpg);
3
+ background-size: 100%;
4
+ font-family: "GothamNarrow-Ultra";
5
+ font-size: 14px;
6
+ text-align: center;
7
+ width: 100%;
8
+ height: 100%;
9
+ position: absolute;
10
+ overflow-y: scroll;
11
+ color: #333;
12
+ letter-spacing: initial;
13
+ margin: 0;
14
+ line-height: 20px;
15
+ .wrapper {
16
+ background: url(../images/cat.png) no-repeat center;
17
+ min-height: 90vh;
18
+ width: 50vh;
19
+ background-size: 100%;
20
+ text-align: center;
21
+ margin: 2em auto;
22
+ -webkit-font-smoothing: auto;
23
+ .content {
24
+ padding-top: 52vh;
25
+ h6 {
26
+ font-family: "GothamNarrow-Ultra";
27
+ font-size: 1.2em;
28
+ color: #444;
29
+ margin-top: 10px;
30
+ margin-bottom: 10px;
31
+ line-height: 18.48px;
32
+ font-weight: 400;
33
+ a {
34
+ color: #444;
35
+ font-weight: 400;
36
+ }
37
+ }
38
+ }
39
+ ul {
40
+ padding: 10em 0 0;
41
+ margin-top: 0;
42
+ li {
43
+ width: 11.11%;
44
+ display: inline-block;
45
+ float: left;
46
+ transform: rotate(270deg);
47
+ transform-origin: left top 0;
48
+ padding-left: 0em;
49
+ padding-top: 0.55em;
50
+ font-weight: 400;
51
+ a {
52
+ text-decoration: none;
53
+ color: #444;
54
+ &:hover {
55
+ text-decoration: none;
56
+ color: #000;
57
+ }
58
+ }
59
+ }
60
+ li:first-child {
61
+ padding-top: 1em;
62
+ }
63
+ li:nth-child(2) {
64
+ padding-top: 1.1em;
65
+ }
66
+ li:nth-child(3) {
67
+ padding-top: 1.1em;
68
+ }
69
+ li:nth-child(4) {
70
+ padding-top: 0.75em;
71
+ }
72
+ li:last-child {
73
+ padding-top: 0.5em;
74
+ }
75
+ }
76
+ @media only screen and (min-height: 960px) and (max-height: 1280px) {
77
+ ul {
78
+ padding-top: 10.5em;
79
+ }
80
+ }
81
+ /* mediaqueries */
82
+ /*general*/
83
+ }
84
+ @media only screen and (min-height: 720px) and (max-height: 960px) {
85
+ .wrapper ul {
86
+ padding-top: 8.5em;
87
+ }
88
+ }
89
+
90
+ @media only screen and (min-height: 0px) and (max-height: 720px) {
91
+ .wrapper ul {
92
+ padding-top: 8em;
93
+ }
94
+ }
95
+
96
+ @media only screen and (min-height: 960px) and (max-height: 1280px) {
97
+ .wrapper ul {
98
+ padding-top: 10.5em;
99
+ }
100
+ }
101
+
102
+ /*IPAD Landscape*/
103
+ @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
104
+ .wrapper ul {
105
+ padding-top: 8em;
106
+ }
107
+ }
108
+
109
+ /*IPAD Portrait*/
110
+ @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
111
+ .wrapper ul {
112
+ padding-top: 13em;
113
+ }
114
+ }
115
+
116
+ /*iphone Portrait*/
117
+ @media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: portrait) {
118
+ .wrapper ul {
119
+ padding-top: 6em;
120
+ }
121
+ }
122
+
123
+ @media only screen and (min-height: 0px) and (max-height: 700px) {
124
+ .wrapper .content h6 {
125
+ font-size: 1em;
126
+ margin: 0.2em 0;
127
+ }
128
+ .wrapper ul li a {
129
+ font-size: 0.8em;
130
+ }
131
+ }
132
+ }
@@ -0,0 +1,26 @@
1
+ import { createTheme } from "@mui/material/styles";
2
+ import baseTheme from "../theme";
3
+
4
+ const theme404 = createTheme(baseTheme, {
5
+ typography: {
6
+ fontFamily: "\"GothamNarrow-Ultra\"",
7
+ },
8
+ components: {
9
+ MuiCssBaseline: {
10
+ styleOverrides: `
11
+ @font-face {
12
+ font-family: 'GothamNarrow-Ultra';
13
+ font-style: normal;
14
+ font-weight: normal;
15
+ src: url("/fonts/gothamnarrow-ultra/GothamNarrow-Ultra.eot?#iefix") format("embedded-opentype"),
16
+ url("/fonts/gothamnarrow-ultra/GothamNarrow-Ultra.otf") format("opentype"),
17
+ url("/fonts/gothamnarrow-ultra/GothamNarrow-Ultra.woff") format("woff"),
18
+ url("/fonts/gothamnarrow-ultra/GothamNarrow-Ultra.ttf") format("truetype"),
19
+ url("/fonts/gothamnarrow-ultra/GothamNarrow-Ultra.svg#GothamNarrow-Ultra") format("svg");
20
+ }
21
+ `,
22
+ },
23
+ },
24
+ });
25
+
26
+ export default theme404;