summaryrefslogtreecommitdiffstats
path: root/docusaurus/src/theme/NotFound/DDoSProtection.tsx
blob: 4e933a87a7a64c1d0502275a317bac5f960add73 (plain) (blame)
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
/* SPDX-License-Identifier: AGPL-3.0-or-later */

import React from "react";

export default (): React.JSX.Element => (
  <div
    style={{
      fontFamily:
        'system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji"',
      //
      lineHeight: 1.15,
      // -webkit-text-size-adjust: 100%;
      // color: #313131;
      color: "black",
    }}
  >
    <div
      style={{
        display: "flex",
        flexDirection: "column",
        minHeight: "100vh",
      }}
    >
      <div
        style={{
          display: "flex",
          flex: 1,
          flexDirection: "column",
          alignItems: "center",
        }}
      >
        <div
          style={{
            paddingRight: "1.5rem",
            paddingLeft: "1.5rem",
            //
            margin: "8rem auto",
            width: "100%",
            maxWidth: "60rem",
            //
            marginTop: " 4rem",
          }}
        >
          <div
            style={{
              marginBottom: "1rem",
              //
              overflowWrap: "break-word",
              //
              lineHeight: "1.75rem",
              fontSize: "1.5rem",
              //
              // line-height: 3.75rem;
              // font-size: 2.5rem;
              fontWeight: 500,
            }}
          >
            &nbsp;
          </div>
          <div
            style={{
              lineHeight: "1.5rem",
              fontSize: "1.25rem",
              //
              // line-height: 2.25rem;
              // font-size: 1.5rem;
              fontWeight: 500,
            }}
          >
            Checking if the site connection is secure
          </div>
          <div
            style={{
              display: "flex",
            }}
          >
            <div
              style={{
                flexWrap: "wrap",
                justifyContent: "center",
                //
                display: "flex",
                //
                margin: "2rem 0",
              }}
            >
              <div>
                <div
                  style={{
                    border: "none",
                    overflow: "hidden",
                    width: "300px",
                    height: "65px",
                  }}
                >
                  <div
                    style={{
                      margin: 0,
                      padding: 0,
                      width: "100%",
                      height: "100%",
                      overflow: "hidden",
                    }}
                  >
                    <div
                      style={{
                        backgroundColor: "#fff",
                        lineHeight: "17px",
                        // color: #1d1f20;
                        color: "black",
                        fontFamily:
                          "-apple-system,system-ui,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Helvetica Neue,Arial,sans-serif",
                        fontSize: "14px",
                        fontWeight: 400,
                        // -webkit-font-smoothing: antialiased;
                        fontStyle: "normal",
                        //
                        margin: 0,
                        padding: 0,
                        width: "100%",
                        height: "100%",
                        overflow: "hidden",
                      }}
                    >
                      <div style={{ borderSpacing: 0 }}>
                        <div
                          style={{
                            display: "flex",
                            //
                            alignItems: "center",
                            justifyContent: "space-between",
                            border: "1px solid #e0e0e0",
                            backgroundColor: "#fafafa",
                            height: "63px",
                            userSelect: "none",
                          }}
                        >
                          <div
                            style={{
                              display: "flex",
                              alignItems: "center",
                              marginLeft: "11px",
                            }}
                          >
                            <div
                              style={{
                                display: "flex",
                                marginRight: "8px",
                                width: "30px",
                                height: "30px",
                                animation: "rotate 5s linear infinite",
                              }}
                            ></div>
                            <div>Verifying...</div>
                          </div>
                        </div>
                      </div>
                    </div>
                  </div>
                </div>
              </div>
            </div>
          </div>
          <div
            style={{
              overflowWrap: "break-word",
              //
              lineHeight: "1.5rem",
              fontSize: "1rem",
              //
              // line-height: 2.25rem;
              // font-size: 1.5rem;
              fontWeight: 400,
              //
              margin: "2rem 0",
            }}
          >
            Wolfree needs to review the security of your connection before
            proceeding.
          </div>
        </div>
      </div>
      <div
        style={{
          margin: "0 auto",
          width: "100%",
          maxWidth: "60rem",
          lineHeight: "1.125rem",
          fontSize: ".75rem",
          paddingRight: "1.5rem",
          paddingLeft: "1.5rem",
        }}
      >
        <div
          style={{
            borderTop: "1px solid #d9d9d9",
            paddingTop: "1rem",
            paddingBottom: "1rem",
          }}
        >
          <div style={{ textAlign: "center" }}>
            Performance & security by Wolfree
          </div>
        </div>
      </div>
    </div>
  </div>
);