Some checks failed
Deploy to CF Multisite / deploy (push) Failing after 1m53s
- Cloudflare Workers + R2 기반 - Edge 캐싱으로 비용 절감 - 티어별 Rate Limiting (free/basic/pro) - KV 기반 사용량 추적 - Admin API (usage, customers, tiers, stats) - Gitea Actions 배포 워크플로우 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
38 lines
933 B
HTML
38 lines
933 B
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>연락처 - 데모 사이트</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav>
|
|
<a href="/" class="logo">Demo Site</a>
|
|
<ul>
|
|
<li><a href="/">홈</a></li>
|
|
<li><a href="/about">소개</a></li>
|
|
<li><a href="/contact" class="active">연락처</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<section class="content">
|
|
<h1>연락처</h1>
|
|
<p>문의사항이 있으시면 아래로 연락해 주세요.</p>
|
|
|
|
<div class="contact-info">
|
|
<p><strong>이메일:</strong> contact@example.com</p>
|
|
<p><strong>GitHub:</strong> github.com/example</p>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© 2024 CF Multisite. Powered by Cloudflare.</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|