Initial scaffold: Cloudflare Pages + Worker + README + wrangler

This commit is contained in:
Kenji Morishige
2026-06-09 20:18:25 -05:00
commit 6499daadb1
5 changed files with 80 additions and 0 deletions

17
index.html Normal file
View File

@@ -0,0 +1,17 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Cloudflare Test Site</title>
<style>body{font-family:system-ui,Segoe UI,Helvetica,Arial;color:#111;padding:2rem}</style>
</head>
<body>
<h1>Cloudflare test site</h1>
<p>This is a minimal static site for testing Cloudflare Pages or DNS/proxy setups.</p>
<ul>
<li>Deploy with Cloudflare Pages (connect this repo)</li>
<li>Or serve via any origin and use Cloudflare DNS/proxy</li>
</ul>
</body>
</html>