diff options
Diffstat (limited to 'docusaurus/src/theme/NotFound/DDoSProtection.tsx')
-rw-r--r-- | docusaurus/src/theme/NotFound/DDoSProtection.tsx | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/docusaurus/src/theme/NotFound/DDoSProtection.tsx b/docusaurus/src/theme/NotFound/DDoSProtection.tsx new file mode 100644 index 0000000..6cd8c04 --- /dev/null +++ b/docusaurus/src/theme/NotFound/DDoSProtection.tsx @@ -0,0 +1,34 @@ +/** + * @license + * SPDX-License-Identifier: AGPL-3.0-or-later + * This file is part of Wolfree. + * This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + */ + +import React from "react"; + +const DDoSProtection = () => ( + <center + style={{ + display: "flex", + justifyContent: "center", + alignItems: "center", + height: 100 + "vh", + }} + > + <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> +); + +export default DDoSProtection; |