-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (60 loc) · 3.27 KB
/
index.html
File metadata and controls
62 lines (60 loc) · 3.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QuantumForge - AI & Quantum Computing Services</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); color: #fff; min-height: 100vh; padding: 40px 20px; }
.container { max-width: 800px; margin: 0 auto; }
h1 { font-size: 2.5rem; margin-bottom: 10px; background: linear-gradient(90deg, #00d4ff, #7c3aed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.tagline { color: #94a3b8; margin-bottom: 40px; }
.services { display: grid; gap: 20px; margin-bottom: 40px; }
.service { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 24px; }
.service h3 { color: #00d4ff; margin-bottom: 10px; }
.price { background: linear-gradient(90deg, #7c3aed, #00d4ff); padding: 4px 12px; border-radius: 20px; font-size: 0.9rem; display: inline-block; margin-top: 10px; }
.contact { background: rgba(124, 58, 237, 0.2); border: 1px solid #7c3aed; border-radius: 12px; padding: 24px; text-align: center; }
.contact a { color: #00d4ff; text-decoration: none; }
.wallet { font-family: monospace; font-size: 0.8rem; word-break: break-all; background: rgba(0,0,0,0.3); padding: 10px; border-radius: 8px; margin-top: 15px; }
</style>
</head>
<body>
<div class="container">
<h1>🧬 QuantumForge</h1>
<p class="tagline">AI & Quantum Computing Services | Drug Discovery | Automation</p>
<div class="services">
<div class="service">
<h3>🔬 Quantum Drug Discovery</h3>
<p>Molecular simulations, binding affinity prediction, ADMET analysis using quantum algorithms.</p>
<span class="price">From $50</span>
</div>
<div class="service">
<h3>🤖 AI Automation</h3>
<p>Custom chatbots, workflow automation, data processing pipelines.</p>
<span class="price">From $100</span>
</div>
<div class="service">
<h3>🐍 Python Development</h3>
<p>Scripts, APIs, bots, web scraping, data analysis.</p>
<span class="price">From $25</span>
</div>
<div class="service">
<h3>💼 Consulting</h3>
<p>Expert consultation on quantum computing, AI/ML, drug discovery.</p>
<span class="price">$100/hour</span>
</div>
</div>
<div class="contact">
<h3>📧 Get Started</h3>
<p style="margin: 15px 0;">
<a href="https://t.me/Master_bussines_bot">💬 Telegram Bot</a> |
<a href="http://138.68.7.97">🌐 Main Site</a>
</p>
<p>Pay with crypto:</p>
<div class="wallet">0xdde065948d5ed4334add9040de82b6f5ea430a86</div>
<p style="margin-top: 10px; font-size: 0.9rem; color: #94a3b8;">ETH • MATIC • BNB</p>
</div>
</div>
</body>
</html>