export default {
fetch(request) {
return new Response(
`<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Landing Page</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
width: 100%;
max-width: 600px;
padding: 0;
box-sizing: border-box;
}
img {
width: 100%;
height: auto;
display: block;
cursor: pointer;
border-radius: 8px;
}
</style>
</head>
<body>
<div class="container">
<a href="https://okwin06.com/#/register?invitationCode=3357715058247" target="_blank">
<img src="https://79db91d6.tirangaa.pages.dev/jalwa.jpg" alt="Register">
</a>
</div>
</body>
</html>`,
{
headers: { "content-type": "text/html; charset=UTF-8" }
}
);
}
};