Back

Version 3

3/4/2025
import randomWord from "npm:random-word";

export default async function(req: Request): Promise<Response> {
return new Response(
`<html lang="en">
<head>
<title>Project Name Generator!</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://unpkg.com/@tailwindcss/browser@4"></script>
</head>
<body class="grid place-items-center">
<h1 class="text-4xl">
${randomWord()}
</h1>
</body>
</html>`,
{
headers: {
"Content-Type": "text/html",
},
},
);
}