2023-02-25 19:38:19 +00:00
|
|
|
import Head from '../Head.tsx';
|
|
|
|
|
|
|
|
export default ({
|
|
|
|
title,
|
|
|
|
content,
|
|
|
|
links,
|
|
|
|
|
|
|
|
theme,
|
|
|
|
extraStylesheets,
|
|
|
|
extraScripts,
|
|
|
|
cacheBust,
|
|
|
|
|
|
|
|
showHakkenDates,
|
|
|
|
}) => <>
|
|
|
|
<html>
|
|
|
|
<Head
|
|
|
|
title={title}
|
|
|
|
theme={theme}
|
|
|
|
extraStylesheets={extraStylesheets}
|
|
|
|
cacheBust={cacheBust}
|
|
|
|
extraScripts={extraScripts}
|
|
|
|
/>
|
|
|
|
<body>
|
|
|
|
<video
|
|
|
|
class="video"
|
|
|
|
src="/assets/money-rains.mp4"
|
|
|
|
autoplay="true"
|
|
|
|
loop="true"
|
|
|
|
muted="true"
|
|
|
|
></video>
|
|
|
|
<div id="charts"></div>
|
2023-02-25 20:10:26 +00:00
|
|
|
<div id="mezza">mezza</div>
|
2023-02-25 19:38:19 +00:00
|
|
|
<marquee
|
|
|
|
id="ad"
|
|
|
|
scrolldelay="60"
|
|
|
|
>
|
|
|
|
Invest today!
|
|
|
|
Stocks are up!
|
|
|
|
mezza will take care of your money!
|
2023-02-25 19:43:16 +00:00
|
|
|
Biggest profits!
|
2023-02-25 19:38:19 +00:00
|
|
|
Stay invested!
|
|
|
|
</marquee>
|
2023-02-25 20:10:26 +00:00
|
|
|
<div class="money"></div>
|
2023-02-25 19:38:19 +00:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
</>;
|