Skip to content

Commit ef349c8

Browse files
rubenmarcusclaude
andcommitted
chore: add placeholder landing page for Cloudflare Pages deploy test
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 39c3c8a commit ef349c8

File tree

1 file changed

+85
-0
lines changed

1 file changed

+85
-0
lines changed

website/build/index.html

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>aeo.js — Answer Engine Optimization</title>
7+
<style>
8+
* { margin: 0; padding: 0; box-sizing: border-box; }
9+
body {
10+
font-family: 'JetBrains Mono', monospace, system-ui;
11+
background: #08080A;
12+
color: #C0C0C5;
13+
min-height: 100vh;
14+
display: flex;
15+
align-items: center;
16+
justify-content: center;
17+
}
18+
.container {
19+
text-align: center;
20+
max-width: 600px;
21+
padding: 2rem;
22+
}
23+
h1 {
24+
font-size: 3rem;
25+
color: #E8E8EA;
26+
margin-bottom: 0.5rem;
27+
}
28+
.badge {
29+
display: inline-block;
30+
font-size: 0.65rem;
31+
font-weight: 600;
32+
color: #4ADE80;
33+
text-transform: uppercase;
34+
letter-spacing: 0.1em;
35+
margin-bottom: 1.5rem;
36+
}
37+
p {
38+
font-size: 1rem;
39+
line-height: 1.8;
40+
color: #808088;
41+
margin-bottom: 1rem;
42+
}
43+
code {
44+
background: rgba(40, 40, 46, 0.5);
45+
padding: 0.2rem 0.5rem;
46+
border-radius: 4px;
47+
border: 1px solid #28282E;
48+
font-size: 0.85rem;
49+
color: #E8E8EA;
50+
}
51+
.links {
52+
margin-top: 2rem;
53+
display: flex;
54+
gap: 1rem;
55+
justify-content: center;
56+
}
57+
a {
58+
color: #98989F;
59+
text-decoration: none;
60+
font-size: 0.8rem;
61+
padding: 0.5rem 1rem;
62+
border: 1px solid #28282E;
63+
border-radius: 6px;
64+
transition: all 0.2s ease;
65+
}
66+
a:hover {
67+
border-color: #38383F;
68+
color: #E8E8EA;
69+
background: rgba(40, 40, 46, 0.5);
70+
}
71+
</style>
72+
</head>
73+
<body>
74+
<div class="container">
75+
<h1>aeo.js</h1>
76+
<span class="badge">Coming Soon</span>
77+
<p>Answer Engine Optimization for the modern web. Make your site discoverable by AI crawlers and LLMs.</p>
78+
<p><code>npm install aeo.js</code></p>
79+
<div class="links">
80+
<a href="https://github.com/multivmlabs/aeo.js">GitHub</a>
81+
<a href="https://www.npmjs.com/package/aeo.js">npm</a>
82+
</div>
83+
</div>
84+
</body>
85+
</html>

0 commit comments

Comments
 (0)