mirror of
https://github.com/blackboxprogramming/blackroad-apps.git
synced 2026-03-17 04:57:16 -05:00
📱 11 BlackRoad OS Apps
All published on BlackRoad OS App Store: - Dashboard, Metrics, Vault, Agent Hub - Commander, Analytics, Monitor - Deployer, Studio, Sync - Plus the original First App Zero gatekeepers. Zero fees.
This commit is contained in:
8
blackroad-sync/blackroad-app.json
Normal file
8
blackroad-sync/blackroad-app.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "BlackRoad Sync",
|
||||
"version": "1.0.0",
|
||||
"description": "Real-time data synchronization",
|
||||
"platforms": ["web", "pwa", "android", "desktop", "ios"],
|
||||
"icon": "🔄",
|
||||
"published_date": "2026-02-10T14:39:22-06:00"
|
||||
}
|
||||
96
blackroad-sync/index.html
Normal file
96
blackroad-sync/index.html
Normal file
@@ -0,0 +1,96 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="theme-color" content="#FF6B35">
|
||||
<title>BlackRoad Sync</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, #000 0%, #1a1a1a 100%);
|
||||
color: #fff;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 20px;
|
||||
}
|
||||
.container {
|
||||
max-width: 600px;
|
||||
text-align: center;
|
||||
}
|
||||
.logo {
|
||||
font-size: 120px;
|
||||
margin-bottom: 20px;
|
||||
animation: pulse 2s ease-in-out infinite;
|
||||
}
|
||||
@keyframes pulse {
|
||||
0%, 100% { transform: scale(1); }
|
||||
50% { transform: scale(1.1); }
|
||||
}
|
||||
h1 {
|
||||
font-size: 48px;
|
||||
margin-bottom: 20px;
|
||||
background: linear-gradient(90deg, #FF6B35, #F7931E);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
.tagline {
|
||||
font-size: 20px;
|
||||
color: #999;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.button {
|
||||
background: #FF6B35;
|
||||
color: #fff;
|
||||
border: none;
|
||||
padding: 15px 40px;
|
||||
border-radius: 8px;
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
.button:hover {
|
||||
background: #F7931E;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
.badge {
|
||||
display: inline-block;
|
||||
background: rgba(255,107,53,0.2);
|
||||
border: 1px solid #FF6B35;
|
||||
color: #FF6B35;
|
||||
padding: 8px 16px;
|
||||
border-radius: 20px;
|
||||
font-size: 14px;
|
||||
margin: 20px 5px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="logo">🔄</div>
|
||||
<h1>BlackRoad Sync</h1>
|
||||
<p class="tagline">Real-time data synchronization</p>
|
||||
|
||||
<div>
|
||||
<span class="badge">📱 PWA</span>
|
||||
<span class="badge">🤖 Android</span>
|
||||
<span class="badge">💻 Desktop</span>
|
||||
<span class="badge">🍎 iOS</span>
|
||||
</div>
|
||||
|
||||
<button class="button" onclick="alert('BlackRoad Sync is live!')">
|
||||
Launch App
|
||||
</button>
|
||||
|
||||
<p style="margin-top: 40px; color: #666; font-size: 14px;">
|
||||
Published on BlackRoad OS App Store<br>
|
||||
Zero gatekeepers • Zero fees • Total freedom
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
14
blackroad-sync/manifest.json
Normal file
14
blackroad-sync/manifest.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "BlackRoad Sync",
|
||||
"short_name": "Sync",
|
||||
"description": "Real-time data synchronization",
|
||||
"start_url": "/",
|
||||
"display": "standalone",
|
||||
"background_color": "#000000",
|
||||
"theme_color": "#FF6B35",
|
||||
"icons": [{
|
||||
"src": "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext y='0.9em' font-size='90'%3E🔄%3C/text%3E%3C/svg%3E",
|
||||
"sizes": "512x512",
|
||||
"type": "image/svg+xml"
|
||||
}]
|
||||
}
|
||||
Reference in New Issue
Block a user