Compare commits
No commits in common. "c0d8eb9970f72b8ac016b300c639754b115d765a" and "19e9b5ca52aa533dcb32aaa146c432ffe26a017f" have entirely different histories.
c0d8eb9970
...
19e9b5ca52
1 changed files with 12 additions and 17 deletions
|
@ -2,8 +2,8 @@ import Hero from "./Hero";
|
|||
//import IconAnchor from "./IconAnchor";
|
||||
import Countdown from "react-countdown";
|
||||
|
||||
////import { /*/*Music,*/ Globe,*/ Globe } from "lucide-preact";
|
||||
////import { SiGithub, SiForgejo, SiInstagram } from "react-icons/si";
|
||||
//import { /*Music,*/ Globe } from "lucide-preact";
|
||||
//import { SiGithub, SiForgejo, SiInstagram } from "react-icons/si";
|
||||
|
||||
import "./App.css";
|
||||
|
||||
|
@ -14,21 +14,16 @@ export default () => {
|
|||
waves="header"
|
||||
title="This is not a CDN."
|
||||
paragraph={`Coming ${new Date().getFullYear() + 1}`}
|
||||
links={[
|
||||
<Countdown
|
||||
key="countdown"
|
||||
date={Date.now() + 2000}
|
||||
intervalDelay={0}
|
||||
precision={1000}
|
||||
zeroPadTime={2}
|
||||
renderer={(props) => (
|
||||
<span>{props.total.toString().padStart(10, "0")} ms..</span>
|
||||
)}
|
||||
onComplete={() => {
|
||||
window.location.replace("https://ipv4.army");
|
||||
}}
|
||||
/>,
|
||||
]}
|
||||
links={[<Countdown key="countdown"
|
||||
date={Date.now() + 2000}
|
||||
intervalDelay={0}
|
||||
precision={1000}
|
||||
zeroPadTime={2}
|
||||
renderer={props => <span>{props.total.toString().padStart(10, "0")} ms..</span>}
|
||||
onComplete={() => {
|
||||
window.location.replace("https://ipv4.army");
|
||||
}}
|
||||
/>]}
|
||||
/>
|
||||
{/*
|
||||
<hr />
|
||||
|
|
Loading…
Add table
Reference in a new issue