mezza.biz/_includes/layouts/homepage.tsx

45 lines
882 B
TypeScript
Raw Normal View History

2023-02-25 19:38:19 +00:00
import Head from '../Head.tsx';
export default ({
title,
theme,
extraStylesheets,
extraScripts,
cacheBust,
}) => <>
<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>
<marquee
id="ad"
2024-02-20 16:17:50 +00:00
scrolldelay="10"
truespeed="true"
behavior="scroll"
2023-02-25 19:38:19 +00:00
>
2024-02-20 16:17:50 +00:00
mezza
nineninenine //
here for YOUR business //
we make that line go UP //
NEVER settle for less //
call NOW to talk to your personal finance savior
2023-02-25 19:38:19 +00:00
</marquee>
2024-02-20 16:17:50 +00:00
<div class="money">$</div>
2023-02-25 19:38:19 +00:00
</body>
</html>
</>;