cohost/html/hs-mortality.tsx

28 lines
1,011 B
TypeScript
Raw Normal View History

2023-07-25 01:41:07 -04:00
// https://mspaintadventures.fandom.com/wiki/Mortality
// bobbing would be great...
// ^ requires a bit too much artistry to fill in the gaps i fear
// ^ or just. clone stamp that could work
// ^ it did, yay! :D
// bit of code i used on this page that i felt proud of:
// https://homestuck.net/img/resources/assets/uncategorized-assets/
// document.querySelectorAll("a").forEach(a => {
// const img = document.createElement("img");
// img.src = a.href;
// a.insertAdjacentElement("afterend", img);
// })
import { render_and_copy, static_url } from "./common.tsx";
render_and_copy(
<img
src={static_url("homestuck-3853-transparent.png")}
alt="TODO TODO TODO TODO TODO TODO TODO TODO TODO TODO"
style={{
background:
// TODO: don't hotlink, actually find the right thing
// this might be good enough tm
"url(https://homestuck.net/img/resources/assets/incipisphere-assets/35%20-%20eCjrT.png) fixed;",
}}
/>
);