Files
blackroad-io-site/chat.html
Alexa Louise df24149b53 Add Krak + Bitcoin payment methods to all BlackRoad apps
- Added Krak payment link: https://krak.app/AAAAAAAA
- Added Bitcoin address: 3NJYuq8KA1xBea6JNg32XgDwjpvLkrR5VH
- Created complete apps for all subdomains:
  • chat.blackroad.io
  • pay.blackroad.io
  • buy.blackroad.io
  • math.blackroad.io
  • agents.blackroad.io
  • docs.blackroad.io
  • console.blackroad.io
  • status.blackroad.io

All apps feature:
- BlackRoad gradient branding
- Payment integration (Krak + BTC)
- AI agent messaging
- Responsive design

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-13 13:37:04 -06:00

110 lines
3.3 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BlackRoad Chat - AI Powered</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --gradient: linear-gradient(135deg, #FF9D00, #FF6B00, #FF0066, #D600AA, #7700FF, #0066FF); }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #02030a;
color: white;
min-height: 100vh;
}
.navbar {
background: rgba(0,0,0,0.5);
backdrop-filter: blur(20px);
padding: 16px 32px;
border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar h1 {
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 24px;
font-weight: 900;
}
.container { max-width: 1200px; margin: 0 auto; padding: 48px 32px; }
.hero { text-align: center; padding: 80px 0; }
.hero h2 { font-size: 56px; margin-bottom: 24px; }
.hero p { font-size: 20px; opacity: 0.8; margin-bottom: 48px; }
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 32px;
margin-top: 48px;
}
.feature-card {
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 16px;
padding: 32px;
transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-8px); border-color: #7700FF; }
.payment-banner {
margin-top: 48px;
padding: 32px;
background: rgba(255,255,255,0.05);
border-radius: 16px;
border: 1px solid rgba(255,255,255,0.1);
text-align: center;
}
.payment-banner h3 { font-size: 24px; margin-bottom: 16px; }
.payment-banner a {
display: inline-block;
padding: 16px 32px;
background: var(--gradient);
color: white;
text-decoration: none;
border-radius: 12px;
font-weight: 700;
margin: 8px;
transition: transform 0.2s;
}
.payment-banner a:hover { transform: scale(1.05); }
.crypto-address {
font-family: monospace;
background: rgba(0,0,0,0.3);
padding: 12px;
border-radius: 8px;
margin-top: 16px;
font-size: 14px;
word-break: break-all;
}
</style>
</head>
<body>
<div class="navbar"><h1>BlackRoad Chat</h1></div>
<div class="container">
<div class="hero">
<h2>AI-Powered Chat</h2>
<p>Talk to 30,000 AI Agents</p>
</div>
<div class="feature-grid">
<div class="feature-card">
<h3>=€ AI-Powered</h3>
<p>Advanced AI capabilities integrated into every message</p>
</div>
<div class="feature-card">
<h3>¡ Real-Time</h3>
<p>Instant responses from distributed agents</p>
</div>
<div class="feature-card">
<h3>= Secure</h3>
<p>End-to-end encrypted conversations</p>
</div>
</div>
<div class="payment-banner">
<h3>=¸ Support BlackRoad</h3>
<a href="https://krak.app/AAAAAAAA" target="_blank">Send via Krak </a>
<div class="crypto-address">
<strong>BTC:</strong> 3NJYuq8KA1xBea6JNg32XgDwjpvLkrR5VH
</div>
</div>
</div>
</body>
</html>