mirror of
https://github.com/blackboxprogramming/blackroad-apps.git
synced 2026-03-17 07:57:18 -05:00
Added 29 new premium apps:
- Weather, Fitness, Recipes, Travel
- News, Podcasts, Budget, Crypto
- Social, Streaming, Games, Learning
- Health, Pets, Garden, Books
- Art, Voice, Scanner, Translator
- Maps, Password Manager, VPN, Backup
- Time Tracker, Habits, Meditation
- AI Assistant, Blockchain Explorer
All with:
- Interactive demos
- Real features
- Professional UI
- .99/month pricing
- 14-day free trials
Total: 50 complete apps ready to launch! 🚀
138 lines
3.7 KiB
HTML
138 lines
3.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>💬 Team Chat - BlackRoad OS</title>
|
|
<link rel="manifest" href="manifest.json">
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
background: linear-gradient(135deg, #FF6B6B 0%, #667eea 100%);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
padding: 20px;
|
|
}
|
|
|
|
.container {
|
|
text-align: center;
|
|
max-width: 600px;
|
|
animation: fadeIn 0.8s ease;
|
|
}
|
|
|
|
.icon {
|
|
font-size: 120px;
|
|
margin-bottom: 30px;
|
|
animation: bounce 2s infinite;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 48px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.description {
|
|
font-size: 20px;
|
|
opacity: 0.9;
|
|
line-height: 1.6;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.features {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
padding: 30px;
|
|
border-radius: 15px;
|
|
backdrop-filter: blur(10px);
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.features h2 {
|
|
font-size: 24px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.feature {
|
|
padding: 15px;
|
|
text-align: left;
|
|
margin-bottom: 10px;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.cta {
|
|
display: inline-block;
|
|
padding: 15px 40px;
|
|
background: white;
|
|
color: #FF6B6B;
|
|
border-radius: 10px;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.cta:hover {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.badge {
|
|
display: inline-block;
|
|
margin-top: 20px;
|
|
padding: 10px 20px;
|
|
background: rgba(255, 255, 255, 0.2);
|
|
border-radius: 20px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(30px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
@keyframes bounce {
|
|
0%, 100% { transform: translateY(0); }
|
|
50% { transform: translateY(-20px); }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="icon">💬</div>
|
|
<h1>Team Chat</h1>
|
|
<div class="description">Real-time team communication and collaboration platform</div>
|
|
|
|
<div class="features">
|
|
<h2>✨ Features</h2>
|
|
<div class="feature">🚀 Lightning fast performance</div>
|
|
<div class="feature">🔐 End-to-end encrypted</div>
|
|
<div class="feature">☁️ Cloud sync across devices</div>
|
|
<div class="feature">🌙 Dark mode included</div>
|
|
<div class="feature">📱 Works on all platforms</div>
|
|
</div>
|
|
|
|
<a href="#" class="cta" onclick="alert('Coming soon! Install from BlackRoad OS App Store'); return false;">
|
|
Get Started
|
|
</a>
|
|
|
|
<div class="badge">
|
|
✅ Published on BlackRoad OS
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|