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);
|
|
|
|
// })
|
|
|
|
|
2023-07-25 01:53:47 -04:00
|
|
|
import { Main, render_and_copy, static_url } from "./common.tsx";
|
2023-07-25 01:41:07 -04:00
|
|
|
|
2023-07-25 01:53:47 -04:00
|
|
|
// TODO: rip a hole in the panel (for blood on back)
|
2023-07-25 01:41:07 -04:00
|
|
|
render_and_copy(
|
2023-07-25 01:53:47 -04:00
|
|
|
<Main>
|
|
|
|
<img
|
|
|
|
id="panel"
|
|
|
|
src={static_url("homestuck-3853-transparent-egbertless.png")}
|
|
|
|
alt="TODO TODO TODO TODO TODO TODO TODO TODO TODO TODO"
|
|
|
|
style={{
|
|
|
|
background: `url(${static_url(
|
|
|
|
"incipisphere-thingie.png"
|
|
|
|
)}) fixed;`,
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<img
|
|
|
|
id="egbert"
|
|
|
|
src={static_url("homestuck-3853-egbertful.png")}
|
|
|
|
alt="TODO TODO TODO TODO TODO TODO TODO TODO TODO TODO"
|
|
|
|
/>
|
|
|
|
</Main>
|
2023-07-25 01:41:07 -04:00
|
|
|
);
|