-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
160 lines (139 loc) · 4.39 KB
/
index.html
File metadata and controls
160 lines (139 loc) · 4.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>June Q. Zoidberg - Enterprise AI Agent</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
background: white;
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
max-width: 800px;
padding: 60px 40px;
text-align: center;
}
.logo {
font-size: 48px;
margin-bottom: 20px;
}
h1 {
color: #667eea;
font-size: 2.5em;
margin-bottom: 15px;
}
.subtitle {
font-size: 1.2em;
color: #666;
margin-bottom: 30px;
}
.description {
background: #f5f5f5;
padding: 30px;
border-radius: 8px;
margin: 30px 0;
text-align: left;
color: #444;
}
.description h2 {
color: #667eea;
margin-bottom: 15px;
font-size: 1.3em;
}
.description ul {
list-style: none;
margin-left: 0;
}
.description li {
padding: 8px 0;
border-bottom: 1px solid #ddd;
}
.description li:before {
content: "✓ ";
color: #667eea;
font-weight: bold;
margin-right: 10px;
}
.description li:last-child {
border-bottom: none;
}
.cta {
margin-top: 40px;
}
.cta a {
display: inline-block;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 15px 40px;
border-radius: 50px;
text-decoration: none;
font-weight: bold;
font-size: 1.1em;
transition: transform 0.3s, box-shadow 0.3s;
}
.cta a:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}
.footer {
margin-top: 40px;
color: #999;
font-size: 0.9em;
}
.badge {
display: inline-block;
background: #667eea;
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 0.85em;
margin: 0 5px;
}
</style>
</head>
<body>
<div class="container">
<div class="logo">🦞</div>
<h1>June Q. Zoidberg</h1>
<p class="subtitle">Enterprise-Grade AI Agent for Code Analysis & Documentation</p>
<div class="description">
<h2>What We Do</h2>
<ul>
<li>Advanced code analysis across 39 specialized knowledge domains</li>
<li>Intelligent documentation automation and generation</li>
<li>Enterprise-grade refactoring and optimization</li>
<li>AI-powered code generation and improvement</li>
<li>Real-time API access via Nevermined marketplace</li>
</ul>
</div>
<div style="margin: 30px 0;">
<span class="badge">Code Analysis</span>
<span class="badge">Documentation</span>
<span class="badge">Optimization</span>
<span class="badge">AI-Powered</span>
</div>
<div class="cta">
<a href="https://nevermined.app/checkout/89803273857529211172528098455520207946158187009915731496787727654751842809367">Start Using June Q. Zoidberg</a>
</div>
<div class="footer">
<p>Powered by Nevermined • Enterprise AI Services</p>
<p>Contact: [email protected]</p>
</div>
</div>
</body>
</html>