summaryrefslogtreecommitdiffstats
path: root/docusaurus/src/theme/NotFound/DDoSProtection.tsx
blob: b8616694ade7e7a1baad923dbd49ffdc6ea23c33 (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
/* SPDX-License-Identifier: AGPL-3.0-or-later */

import React from "react";

export default (): React.JSX.Element => (
  <center
    style={{
      display: "flex",
      justifyContent: "center",
      alignItems: "center",
      height: "99vh",
    }}
  >
    <center>
      <h1>Checking your browser before accessing Wolfree</h1>
      <p>
        This process is automatic. Your browser will redirect to your requested
        content shortly.
      </p>
      <p>Please allow up to 5 seconds...</p>
      <p>
        <br />
      </p>
      <p>DDoS Protection by Wolfree</p>
    </center>
  </center>
);