1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/** @jsxImportSource https://esm.sh/preact */
import { render } from "npm:preact-render-to-string";
export default async function(req: Request) {
return new Response(
render(
<html>
<head>
<title>Your Girlfriend's Bday</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div style="position: relative; width: 100%; height: 0; padding-top: 282.8715%;
padding-bottom: 0; box-shadow: 0 2px 8px 0 rgba(63,69,81,0.16); margin-top: 1.6em; margin-bottom: 0.9em; overflow: hidden;
border-radius: 8px; will-change: transform;">
<iframe
loading="lazy"
style="position: absolute; width: 100%; height: 100%; top: 0; left: 0; border: none; padding: 0;margin: 0;"
src="https:&#x2F;&#x2F;www.canva.com&#x2F;design&#x2F;DAGFOLdTZE0&#x2F;mbsW1QuTlQ0ozPwQF5yjMA&#x2F;view?embed"
allowfullscreen="allowfullscreen"
allow="fullscreen"
>
</iframe>
</div>
<a
href="https:&#x2F;&#x2F;www.canva.com&#x2F;design&#x2F;DAGFOLdTZE0&#x2F;mbsW1QuTlQ0ozPwQF5yjMA&#x2F;view?utm_content=DAGFOLdTZE0&amp;utm_campaign=designshare&amp;utm_medium=embeds&amp;utm_source=link"
target="_blank"
rel="noopener"
>
Emily’s Bday
</a>{" "}
by Emily Coe
</body>
</html>,
),
{
headers: {
"Content-Type": "text/html; charset=utf-8",
},
},
);
}