Compare commits

..

No commits in common. "19e9b5ca52aa533dcb32aaa146c432ffe26a017f" and "f3fe05933550d66b06d3934c08a98bc86fcd8f47" have entirely different histories.

3 changed files with 4 additions and 22 deletions

BIN
bun.lockb

Binary file not shown.

View file

@ -19,7 +19,6 @@
"modern-normalize": "^3.0.1",
"preact": "^10.25.4",
"react": "npm:@preact/compat",
"react-countdown": "^2.3.6",
"react-dom": "npm:@preact/compat",
"react-icons": "^5.4.0"
},

View file

@ -1,31 +1,15 @@
import Hero from "./Hero";
//import IconAnchor from "./IconAnchor";
import Countdown from "react-countdown";
import IconAnchor from "./IconAnchor";
//import { /*Music,*/ Globe } from "lucide-preact";
//import { SiGithub, SiForgejo, SiInstagram } from "react-icons/si";
import { Music } from "lucide-preact";
import { SiGithub, SiForgejo, SiInstagram } from "react-icons/si";
import "./App.css";
export default () => {
return (
<div class="container">
<Hero
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");
}}
/>]}
/>
{/*
<Hero title="This is not a CDN." waves="header" />
<hr />
<Hero
title="This, is Audiophile, Basshead and Techie."
@ -62,7 +46,6 @@ export default () => {
]}
waves="footer"
/>
*/}
</div>
);
};