wolfree-dockerfile/docusaurus/src/theme/NotFound/DDoSProtection.tsx

35 lines
935 B
TypeScript

/**
* @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;