export default {
fetch(request) {
return new Response(`<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Good Games Inc</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: #f9f9f9;
color: #333;
line-height: 1.6;
}
header {
background: #111;
color: #fff;
padding: 20px;
text-align: center;
}
nav a {
color: #fff;
margin: 0 12px;
text-decoration: none;
font-weight: bold;
}
section {
max-width: 900px;
margin: 60px auto;
padding: 0 20px;
}
h2 {
border-bottom: 2px solid #ddd;
padding-bottom: 8px;
}
footer {
background: #111;
color: #fff;
text-align: center;
padding: 15px;
margin-top: 80px;
font-size: 14px;
}
input, textarea {
width: 100%;
padding: 10px;
margin: 8px 0 16px;
border: 1px solid #ccc;
border-radius: 4px;
}
button {
background: #111;
color: #fff;
border: none;
padding: 12px 20px;
cursor: pointer;
border-radius: 4px;
}
button:hover {
background: #333;
}
</style>
</head>
<body>
<header>
<h1>Good Games Inc</h1>
<nav>
<a href="/">Home</a>
<a href="/privacy">Privacy Policy</a>
<a href="/contact">Contact</a>
</nav>
</header>
<section>
<h2>Welcome</h2>
<p>
Good Games Inc is dedicated to creating and supporting innovative gaming
and digital experiences.
</p>
</section>
<section>
<h2>Privacy Policy</h2>
<p>
We respect your privacy. We collect only information voluntarily provided
and never sell user data.
</p>
<p>
Contact: <strong>hassan@goodgamesinc.xyz</strong>
</p>
</section>
<section>
<h2>Contact Us</h2>
<form action="mailto:hassan@goodgamesinc.xyz" method="post" enctype="text/plain">
<input type="text" name="name" placeholder="Your name" required />
<input type="email" name="email" placeholder="Your email" required />
<textarea name="message" rows="5" placeholder="Message" required></textarea>
<button type="submit">Send</button>
</form>
</section>
<footer>
© 2026 Good Games Inc
</footer>
</body>
</html>`, {
headers: {
"content-type": "text/html;charset=UTF-8",
},
});
},
};