Files
test-site-chirho/index.html

34 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test Site Chirho</title>
<style>
body {
font-family: system-ui, -apple-system, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 2rem;
line-height: 1.6;
}
h1 { color: #1a365d; }
.tagline { color: #666; font-size: 1.2rem; }
footer { margin-top: 3rem; padding-top: 1rem; border-top: 1px solid #eee; color: #888; }
.contact { margin-top: 2rem; padding: 1.5rem; background: #1e40af; border-radius: 8px; color: #fff; }
.contact h2 { margin-top: 0; color: #93c5fd; }
.contact a { color: #bfdbfe; }
</style>
</head>
<body>
<h1>Welcome to Test Site</h1>
<p class="tagline">A simple test site for demonstrating Claude Code edits</p>
<p>This is a basic website that will be edited by Claude Code based on feedback submitted through Gitea issues.</p>
<section class="contact">
<h2>Contact Us</h2>
<p>Get in touch: <a href="mailto:hello@perffection.com">hello@perffection.com</a></p>
</section>
<footer>For God so loved the world - John 3:16</footer>
</body>
</html>