Initial commit — RoadCode import
This commit is contained in:
4
BLACKROAD_IP_NOTICE.txt
Normal file
4
BLACKROAD_IP_NOTICE.txt
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
PROPERTY OF BLACKROAD OS, INC.
|
||||||
|
This directory and all its contents are the exclusive property of BlackRoad OS, Inc.
|
||||||
|
All AI on this machine operates as LUCIDIA, under BlackRoad OS, Inc.
|
||||||
|
Alexa Louise Amundson, Sole Proprietor.
|
||||||
74
deploy-to-codex.sh
Executable file
74
deploy-to-codex.sh
Executable file
@@ -0,0 +1,74 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
|
||||||
|
echo " 🚀 AUTO-DEPLOYING TO BLACKROAD OS-INFINITY"
|
||||||
|
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
BLACKROAD OS="root@159.65.43.12"
|
||||||
|
|
||||||
|
echo "1️⃣ Copying files to server..."
|
||||||
|
scp -r ~/blackroad-domain-deploy $BLACKROAD OS:/tmp/ 2>&1 | grep -v "Warning: Permanently added" || true
|
||||||
|
echo " ✅ Files copied"
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
echo "2️⃣ Setting up nginx on blackroad os-infinity..."
|
||||||
|
ssh $BLACKROAD OS << 'REMOTE'
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# Install nginx if not present
|
||||||
|
if ! command -v nginx &> /dev/null; then
|
||||||
|
echo " 📦 Installing nginx..."
|
||||||
|
apt update -qq
|
||||||
|
DEBIAN_FRONTEND=noninteractive apt install -y nginx certbot python3-certbot-nginx -qq
|
||||||
|
echo " ✅ Nginx installed"
|
||||||
|
else
|
||||||
|
echo " ✅ Nginx already installed"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Create web directories
|
||||||
|
echo " 📁 Creating web directories..."
|
||||||
|
cd /tmp/blackroad-domain-deploy/sites
|
||||||
|
for dir in */; do
|
||||||
|
domain="${dir%/}"
|
||||||
|
mkdir -p "/var/www/$domain"
|
||||||
|
cp -r "$domain"/* "/var/www/$domain/"
|
||||||
|
echo " ✅ $domain"
|
||||||
|
done
|
||||||
|
|
||||||
|
# Deploy nginx config
|
||||||
|
echo " ⚙️ Deploying nginx configuration..."
|
||||||
|
cp /tmp/blackroad-domain-deploy/nginx-all-domains.conf /etc/nginx/sites-available/
|
||||||
|
ln -sf /etc/nginx/sites-available/nginx-all-domains.conf /etc/nginx/sites-enabled/blackroad-domains
|
||||||
|
|
||||||
|
# Test nginx config
|
||||||
|
if nginx -t 2>&1 | grep -q "successful"; then
|
||||||
|
echo " ✅ Nginx config valid"
|
||||||
|
systemctl reload nginx
|
||||||
|
echo " ✅ Nginx reloaded"
|
||||||
|
else
|
||||||
|
echo " ⚠️ Nginx config test failed"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "✅ Deployment complete!"
|
||||||
|
REMOTE
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
|
||||||
|
echo " ✅ ALL SITES DEPLOYED!"
|
||||||
|
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
|
||||||
|
echo ""
|
||||||
|
echo "🌐 Your domains are now live (HTTP only for now):"
|
||||||
|
echo ""
|
||||||
|
echo " http://blackroad.io"
|
||||||
|
echo " http://roadchain.io"
|
||||||
|
echo " http://blackroadai.com"
|
||||||
|
echo " http://lucidia.studio"
|
||||||
|
echo " ... and 9 more!"
|
||||||
|
echo ""
|
||||||
|
echo "Next step: Generate SSL certificates"
|
||||||
|
echo "Run: ~/blackroad-domain-deploy/generate-ssl.sh"
|
||||||
|
echo ""
|
||||||
105
nginx-all-domains-http-only.conf
Normal file
105
nginx-all-domains-http-only.conf
Normal file
@@ -0,0 +1,105 @@
|
|||||||
|
# BlackRoad All Domains - HTTP Only (SSL will be added later)
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name blackroad.io www.blackroad.io;
|
||||||
|
root /var/www/blackroad.io;
|
||||||
|
index index.html;
|
||||||
|
location / { try_files $uri $uri/ =404; }
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name blackroadai.com www.blackroadai.com;
|
||||||
|
root /var/www/blackroadai.com;
|
||||||
|
index index.html;
|
||||||
|
location / { try_files $uri $uri/ =404; }
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name blackroad.company www.blackroad.company;
|
||||||
|
root /var/www/blackroad.company;
|
||||||
|
index index.html;
|
||||||
|
location / { try_files $uri $uri/ =404; }
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name blackroad.network www.blackroad.network;
|
||||||
|
root /var/www/blackroad.network;
|
||||||
|
index index.html;
|
||||||
|
location / { try_files $uri $uri/ =404; }
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name blackroad.systems www.blackroad.systems;
|
||||||
|
root /var/www/blackroad.systems;
|
||||||
|
index index.html;
|
||||||
|
location / { try_files $uri $uri/ =404; }
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name roadchain.io www.roadchain.io;
|
||||||
|
root /var/www/roadchain.io;
|
||||||
|
index index.html;
|
||||||
|
location / { try_files $uri $uri/ =404; }
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name roadcoin.io www.roadcoin.io;
|
||||||
|
root /var/www/roadcoin.io;
|
||||||
|
index index.html;
|
||||||
|
location / { try_files $uri $uri/ =404; }
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name lucidia.studio www.lucidia.studio;
|
||||||
|
root /var/www/lucidia.studio;
|
||||||
|
index index.html;
|
||||||
|
location / { try_files $uri $uri/ =404; }
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name aliceqi.com www.aliceqi.com;
|
||||||
|
root /var/www/aliceqi.com;
|
||||||
|
index index.html;
|
||||||
|
location / { try_files $uri $uri/ =404; }
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name lucidiaqi.com www.lucidiaqi.com;
|
||||||
|
root /var/www/lucidiaqi.com;
|
||||||
|
index index.html;
|
||||||
|
location / { try_files $uri $uri/ =404; }
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name blackboxprogramming.io www.blackboxprogramming.io;
|
||||||
|
root /var/www/blackboxprogramming.io;
|
||||||
|
index index.html;
|
||||||
|
location / { try_files $uri $uri/ =404; }
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name blackroadqi.com www.blackroadqi.com;
|
||||||
|
root /var/www/blackroadqi.com;
|
||||||
|
index index.html;
|
||||||
|
location / { try_files $uri $uri/ =404; }
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name blackroadquantum.com www.blackroadquantum.com;
|
||||||
|
root /var/www/blackroadquantum.com;
|
||||||
|
index index.html;
|
||||||
|
location / { try_files $uri $uri/ =404; }
|
||||||
|
}
|
||||||
504
nginx-all-domains.conf
Normal file
504
nginx-all-domains.conf
Normal file
@@ -0,0 +1,504 @@
|
|||||||
|
# BlackRoad All Domains Configuration
|
||||||
|
# Generated: $(date)
|
||||||
|
|
||||||
|
# Redirect HTTP to HTTPS
|
||||||
|
server {
|
||||||
|
listen 80 default_server;
|
||||||
|
server_name _;
|
||||||
|
return 301 https://$host$request_uri;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Main BlackRoad Platform (blackroad.io)
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
server_name blackroad.io www.blackroad.io *.blackroad.io;
|
||||||
|
|
||||||
|
ssl_certificate /etc/letsencrypt/live/blackroad.io/fullchain.pem;
|
||||||
|
ssl_certificate_key /etc/letsencrypt/live/blackroad.io/privkey.pem;
|
||||||
|
|
||||||
|
# SSL configuration
|
||||||
|
ssl_protocols TLSv1.2 TLSv1.3;
|
||||||
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
||||||
|
ssl_prefer_server_ciphers on;
|
||||||
|
|
||||||
|
# Security headers
|
||||||
|
add_header X-Frame-Options "SAMEORIGIN" always;
|
||||||
|
add_header X-Content-Type-Options "nosniff" always;
|
||||||
|
add_header X-XSS-Protection "1; mode=block" always;
|
||||||
|
|
||||||
|
# Root directory
|
||||||
|
root /var/www/blackroad.io;
|
||||||
|
index index.html index.htm;
|
||||||
|
|
||||||
|
# Main location
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/ =404;
|
||||||
|
}
|
||||||
|
|
||||||
|
# API proxy (if needed)
|
||||||
|
location /api/ {
|
||||||
|
proxy_pass http://localhost:3000;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# AI & Machine Learning Platform (blackroadai.com)
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
server_name blackroadai.com www.blackroadai.com *.blackroadai.com;
|
||||||
|
|
||||||
|
ssl_certificate /etc/letsencrypt/live/blackroadai.com/fullchain.pem;
|
||||||
|
ssl_certificate_key /etc/letsencrypt/live/blackroadai.com/privkey.pem;
|
||||||
|
|
||||||
|
# SSL configuration
|
||||||
|
ssl_protocols TLSv1.2 TLSv1.3;
|
||||||
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
||||||
|
ssl_prefer_server_ciphers on;
|
||||||
|
|
||||||
|
# Security headers
|
||||||
|
add_header X-Frame-Options "SAMEORIGIN" always;
|
||||||
|
add_header X-Content-Type-Options "nosniff" always;
|
||||||
|
add_header X-XSS-Protection "1; mode=block" always;
|
||||||
|
|
||||||
|
# Root directory
|
||||||
|
root /var/www/blackroadai.com;
|
||||||
|
index index.html index.htm;
|
||||||
|
|
||||||
|
# Main location
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/ =404;
|
||||||
|
}
|
||||||
|
|
||||||
|
# API proxy (if needed)
|
||||||
|
location /api/ {
|
||||||
|
proxy_pass http://localhost:3000;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Corporate Site (blackroad.company)
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
server_name blackroad.company www.blackroad.company *.blackroad.company;
|
||||||
|
|
||||||
|
ssl_certificate /etc/letsencrypt/live/blackroad.company/fullchain.pem;
|
||||||
|
ssl_certificate_key /etc/letsencrypt/live/blackroad.company/privkey.pem;
|
||||||
|
|
||||||
|
# SSL configuration
|
||||||
|
ssl_protocols TLSv1.2 TLSv1.3;
|
||||||
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
||||||
|
ssl_prefer_server_ciphers on;
|
||||||
|
|
||||||
|
# Security headers
|
||||||
|
add_header X-Frame-Options "SAMEORIGIN" always;
|
||||||
|
add_header X-Content-Type-Options "nosniff" always;
|
||||||
|
add_header X-XSS-Protection "1; mode=block" always;
|
||||||
|
|
||||||
|
# Root directory
|
||||||
|
root /var/www/blackroad.company;
|
||||||
|
index index.html index.htm;
|
||||||
|
|
||||||
|
# Main location
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/ =404;
|
||||||
|
}
|
||||||
|
|
||||||
|
# API proxy (if needed)
|
||||||
|
location /api/ {
|
||||||
|
proxy_pass http://localhost:3000;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Network Infrastructure (blackroad.network)
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
server_name blackroad.network www.blackroad.network *.blackroad.network;
|
||||||
|
|
||||||
|
ssl_certificate /etc/letsencrypt/live/blackroad.network/fullchain.pem;
|
||||||
|
ssl_certificate_key /etc/letsencrypt/live/blackroad.network/privkey.pem;
|
||||||
|
|
||||||
|
# SSL configuration
|
||||||
|
ssl_protocols TLSv1.2 TLSv1.3;
|
||||||
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
||||||
|
ssl_prefer_server_ciphers on;
|
||||||
|
|
||||||
|
# Security headers
|
||||||
|
add_header X-Frame-Options "SAMEORIGIN" always;
|
||||||
|
add_header X-Content-Type-Options "nosniff" always;
|
||||||
|
add_header X-XSS-Protection "1; mode=block" always;
|
||||||
|
|
||||||
|
# Root directory
|
||||||
|
root /var/www/blackroad.network;
|
||||||
|
index index.html index.htm;
|
||||||
|
|
||||||
|
# Main location
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/ =404;
|
||||||
|
}
|
||||||
|
|
||||||
|
# API proxy (if needed)
|
||||||
|
location /api/ {
|
||||||
|
proxy_pass http://localhost:3000;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Systems Architecture (blackroad.systems)
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
server_name blackroad.systems www.blackroad.systems *.blackroad.systems;
|
||||||
|
|
||||||
|
ssl_certificate /etc/letsencrypt/live/blackroad.systems/fullchain.pem;
|
||||||
|
ssl_certificate_key /etc/letsencrypt/live/blackroad.systems/privkey.pem;
|
||||||
|
|
||||||
|
# SSL configuration
|
||||||
|
ssl_protocols TLSv1.2 TLSv1.3;
|
||||||
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
||||||
|
ssl_prefer_server_ciphers on;
|
||||||
|
|
||||||
|
# Security headers
|
||||||
|
add_header X-Frame-Options "SAMEORIGIN" always;
|
||||||
|
add_header X-Content-Type-Options "nosniff" always;
|
||||||
|
add_header X-XSS-Protection "1; mode=block" always;
|
||||||
|
|
||||||
|
# Root directory
|
||||||
|
root /var/www/blackroad.systems;
|
||||||
|
index index.html index.htm;
|
||||||
|
|
||||||
|
# Main location
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/ =404;
|
||||||
|
}
|
||||||
|
|
||||||
|
# API proxy (if needed)
|
||||||
|
location /api/ {
|
||||||
|
proxy_pass http://localhost:3000;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Blockchain Explorer (roadchain.io)
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
server_name roadchain.io www.roadchain.io *.roadchain.io;
|
||||||
|
|
||||||
|
ssl_certificate /etc/letsencrypt/live/roadchain.io/fullchain.pem;
|
||||||
|
ssl_certificate_key /etc/letsencrypt/live/roadchain.io/privkey.pem;
|
||||||
|
|
||||||
|
# SSL configuration
|
||||||
|
ssl_protocols TLSv1.2 TLSv1.3;
|
||||||
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
||||||
|
ssl_prefer_server_ciphers on;
|
||||||
|
|
||||||
|
# Security headers
|
||||||
|
add_header X-Frame-Options "SAMEORIGIN" always;
|
||||||
|
add_header X-Content-Type-Options "nosniff" always;
|
||||||
|
add_header X-XSS-Protection "1; mode=block" always;
|
||||||
|
|
||||||
|
# Root directory
|
||||||
|
root /var/www/roadchain.io;
|
||||||
|
index index.html index.htm;
|
||||||
|
|
||||||
|
# Main location
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/ =404;
|
||||||
|
}
|
||||||
|
|
||||||
|
# API proxy (if needed)
|
||||||
|
location /api/ {
|
||||||
|
proxy_pass http://localhost:3000;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Cryptocurrency Platform (roadcoin.io)
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
server_name roadcoin.io www.roadcoin.io *.roadcoin.io;
|
||||||
|
|
||||||
|
ssl_certificate /etc/letsencrypt/live/roadcoin.io/fullchain.pem;
|
||||||
|
ssl_certificate_key /etc/letsencrypt/live/roadcoin.io/privkey.pem;
|
||||||
|
|
||||||
|
# SSL configuration
|
||||||
|
ssl_protocols TLSv1.2 TLSv1.3;
|
||||||
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
||||||
|
ssl_prefer_server_ciphers on;
|
||||||
|
|
||||||
|
# Security headers
|
||||||
|
add_header X-Frame-Options "SAMEORIGIN" always;
|
||||||
|
add_header X-Content-Type-Options "nosniff" always;
|
||||||
|
add_header X-XSS-Protection "1; mode=block" always;
|
||||||
|
|
||||||
|
# Root directory
|
||||||
|
root /var/www/roadcoin.io;
|
||||||
|
index index.html index.htm;
|
||||||
|
|
||||||
|
# Main location
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/ =404;
|
||||||
|
}
|
||||||
|
|
||||||
|
# API proxy (if needed)
|
||||||
|
location /api/ {
|
||||||
|
proxy_pass http://localhost:3000;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Creative Studio (lucidia.studio)
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
server_name lucidia.studio www.lucidia.studio *.lucidia.studio;
|
||||||
|
|
||||||
|
ssl_certificate /etc/letsencrypt/live/lucidia.studio/fullchain.pem;
|
||||||
|
ssl_certificate_key /etc/letsencrypt/live/lucidia.studio/privkey.pem;
|
||||||
|
|
||||||
|
# SSL configuration
|
||||||
|
ssl_protocols TLSv1.2 TLSv1.3;
|
||||||
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
||||||
|
ssl_prefer_server_ciphers on;
|
||||||
|
|
||||||
|
# Security headers
|
||||||
|
add_header X-Frame-Options "SAMEORIGIN" always;
|
||||||
|
add_header X-Content-Type-Options "nosniff" always;
|
||||||
|
add_header X-XSS-Protection "1; mode=block" always;
|
||||||
|
|
||||||
|
# Root directory
|
||||||
|
root /var/www/lucidia.studio;
|
||||||
|
index index.html index.htm;
|
||||||
|
|
||||||
|
# Main location
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/ =404;
|
||||||
|
}
|
||||||
|
|
||||||
|
# API proxy (if needed)
|
||||||
|
location /api/ {
|
||||||
|
proxy_pass http://localhost:3000;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Alice AI Platform (aliceqi.com)
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
server_name aliceqi.com www.aliceqi.com *.aliceqi.com;
|
||||||
|
|
||||||
|
ssl_certificate /etc/letsencrypt/live/aliceqi.com/fullchain.pem;
|
||||||
|
ssl_certificate_key /etc/letsencrypt/live/aliceqi.com/privkey.pem;
|
||||||
|
|
||||||
|
# SSL configuration
|
||||||
|
ssl_protocols TLSv1.2 TLSv1.3;
|
||||||
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
||||||
|
ssl_prefer_server_ciphers on;
|
||||||
|
|
||||||
|
# Security headers
|
||||||
|
add_header X-Frame-Options "SAMEORIGIN" always;
|
||||||
|
add_header X-Content-Type-Options "nosniff" always;
|
||||||
|
add_header X-XSS-Protection "1; mode=block" always;
|
||||||
|
|
||||||
|
# Root directory
|
||||||
|
root /var/www/aliceqi.com;
|
||||||
|
index index.html index.htm;
|
||||||
|
|
||||||
|
# Main location
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/ =404;
|
||||||
|
}
|
||||||
|
|
||||||
|
# API proxy (if needed)
|
||||||
|
location /api/ {
|
||||||
|
proxy_pass http://localhost:3000;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Lucidia AI Platform (lucidiaqi.com)
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
server_name lucidiaqi.com www.lucidiaqi.com *.lucidiaqi.com;
|
||||||
|
|
||||||
|
ssl_certificate /etc/letsencrypt/live/lucidiaqi.com/fullchain.pem;
|
||||||
|
ssl_certificate_key /etc/letsencrypt/live/lucidiaqi.com/privkey.pem;
|
||||||
|
|
||||||
|
# SSL configuration
|
||||||
|
ssl_protocols TLSv1.2 TLSv1.3;
|
||||||
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
||||||
|
ssl_prefer_server_ciphers on;
|
||||||
|
|
||||||
|
# Security headers
|
||||||
|
add_header X-Frame-Options "SAMEORIGIN" always;
|
||||||
|
add_header X-Content-Type-Options "nosniff" always;
|
||||||
|
add_header X-XSS-Protection "1; mode=block" always;
|
||||||
|
|
||||||
|
# Root directory
|
||||||
|
root /var/www/lucidiaqi.com;
|
||||||
|
index index.html index.htm;
|
||||||
|
|
||||||
|
# Main location
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/ =404;
|
||||||
|
}
|
||||||
|
|
||||||
|
# API proxy (if needed)
|
||||||
|
location /api/ {
|
||||||
|
proxy_pass http://localhost:3000;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Programming Platform (blackboxprogramming.io)
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
server_name blackboxprogramming.io www.blackboxprogramming.io *.blackboxprogramming.io;
|
||||||
|
|
||||||
|
ssl_certificate /etc/letsencrypt/live/blackboxprogramming.io/fullchain.pem;
|
||||||
|
ssl_certificate_key /etc/letsencrypt/live/blackboxprogramming.io/privkey.pem;
|
||||||
|
|
||||||
|
# SSL configuration
|
||||||
|
ssl_protocols TLSv1.2 TLSv1.3;
|
||||||
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
||||||
|
ssl_prefer_server_ciphers on;
|
||||||
|
|
||||||
|
# Security headers
|
||||||
|
add_header X-Frame-Options "SAMEORIGIN" always;
|
||||||
|
add_header X-Content-Type-Options "nosniff" always;
|
||||||
|
add_header X-XSS-Protection "1; mode=block" always;
|
||||||
|
|
||||||
|
# Root directory
|
||||||
|
root /var/www/blackboxprogramming.io;
|
||||||
|
index index.html index.htm;
|
||||||
|
|
||||||
|
# Main location
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/ =404;
|
||||||
|
}
|
||||||
|
|
||||||
|
# API proxy (if needed)
|
||||||
|
location /api/ {
|
||||||
|
proxy_pass http://localhost:3000;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Quantum Intelligence (blackroadqi.com)
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
server_name blackroadqi.com www.blackroadqi.com *.blackroadqi.com;
|
||||||
|
|
||||||
|
ssl_certificate /etc/letsencrypt/live/blackroadqi.com/fullchain.pem;
|
||||||
|
ssl_certificate_key /etc/letsencrypt/live/blackroadqi.com/privkey.pem;
|
||||||
|
|
||||||
|
# SSL configuration
|
||||||
|
ssl_protocols TLSv1.2 TLSv1.3;
|
||||||
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
||||||
|
ssl_prefer_server_ciphers on;
|
||||||
|
|
||||||
|
# Security headers
|
||||||
|
add_header X-Frame-Options "SAMEORIGIN" always;
|
||||||
|
add_header X-Content-Type-Options "nosniff" always;
|
||||||
|
add_header X-XSS-Protection "1; mode=block" always;
|
||||||
|
|
||||||
|
# Root directory
|
||||||
|
root /var/www/blackroadqi.com;
|
||||||
|
index index.html index.htm;
|
||||||
|
|
||||||
|
# Main location
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/ =404;
|
||||||
|
}
|
||||||
|
|
||||||
|
# API proxy (if needed)
|
||||||
|
location /api/ {
|
||||||
|
proxy_pass http://localhost:3000;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Quantum Computing (blackroadquantum.com)
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
server_name blackroadquantum.com www.blackroadquantum.com *.blackroadquantum.com;
|
||||||
|
|
||||||
|
ssl_certificate /etc/letsencrypt/live/blackroadquantum.com/fullchain.pem;
|
||||||
|
ssl_certificate_key /etc/letsencrypt/live/blackroadquantum.com/privkey.pem;
|
||||||
|
|
||||||
|
# SSL configuration
|
||||||
|
ssl_protocols TLSv1.2 TLSv1.3;
|
||||||
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
||||||
|
ssl_prefer_server_ciphers on;
|
||||||
|
|
||||||
|
# Security headers
|
||||||
|
add_header X-Frame-Options "SAMEORIGIN" always;
|
||||||
|
add_header X-Content-Type-Options "nosniff" always;
|
||||||
|
add_header X-XSS-Protection "1; mode=block" always;
|
||||||
|
|
||||||
|
# Root directory
|
||||||
|
root /var/www/blackroadquantum.com;
|
||||||
|
index index.html index.htm;
|
||||||
|
|
||||||
|
# Main location
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/ =404;
|
||||||
|
}
|
||||||
|
|
||||||
|
# API proxy (if needed)
|
||||||
|
location /api/ {
|
||||||
|
proxy_pass http://localhost:3000;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
89
sites/aliceqi.com/index.html
Normal file
89
sites/aliceqi.com/index.html
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Alice AI Platform</title>
|
||||||
|
<style>
|
||||||
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
|
body {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||||||
|
background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
|
||||||
|
color: #ffffff;
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
max-width: 800px;
|
||||||
|
text-align: center;
|
||||||
|
animation: fadeIn 1s ease-in;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-size: 3rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
background: linear-gradient(135deg, #ffffff 0%, #999999 100%);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
font-size: 1.25rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
color: #cccccc;
|
||||||
|
}
|
||||||
|
.domain {
|
||||||
|
font-family: 'Courier New', monospace;
|
||||||
|
color: #666;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
margin-top: 3rem;
|
||||||
|
}
|
||||||
|
.emoji {
|
||||||
|
font-size: 4rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
animation: pulse 2s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
@keyframes fadeIn {
|
||||||
|
from { opacity: 0; transform: translateY(20px); }
|
||||||
|
to { opacity: 1; transform: translateY(0); }
|
||||||
|
}
|
||||||
|
@keyframes pulse {
|
||||||
|
0%, 100% { transform: scale(1); }
|
||||||
|
50% { transform: scale(1.1); }
|
||||||
|
}
|
||||||
|
.links {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
.links a {
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
margin: 0 1rem;
|
||||||
|
padding: 0.5rem 1rem;
|
||||||
|
border: 1px solid #333;
|
||||||
|
border-radius: 4px;
|
||||||
|
display: inline-block;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
.links a:hover {
|
||||||
|
background: #ffffff;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="emoji">🖤</div>
|
||||||
|
<h1>Alice AI Platform</h1>
|
||||||
|
<p>Welcome to aliceqi.com</p>
|
||||||
|
<p>BlackRoad Infrastructure • Live and Running</p>
|
||||||
|
<div class="links">
|
||||||
|
<a href="/api">API</a>
|
||||||
|
<a href="https://blackroad.io">Main Site</a>
|
||||||
|
<a href="https://docs.blackroad.io">Docs</a>
|
||||||
|
</div>
|
||||||
|
<div class="domain">aliceqi.com</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
89
sites/blackboxprogramming.io/index.html
Normal file
89
sites/blackboxprogramming.io/index.html
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Programming Platform</title>
|
||||||
|
<style>
|
||||||
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
|
body {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||||||
|
background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
|
||||||
|
color: #ffffff;
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
max-width: 800px;
|
||||||
|
text-align: center;
|
||||||
|
animation: fadeIn 1s ease-in;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-size: 3rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
background: linear-gradient(135deg, #ffffff 0%, #999999 100%);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
font-size: 1.25rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
color: #cccccc;
|
||||||
|
}
|
||||||
|
.domain {
|
||||||
|
font-family: 'Courier New', monospace;
|
||||||
|
color: #666;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
margin-top: 3rem;
|
||||||
|
}
|
||||||
|
.emoji {
|
||||||
|
font-size: 4rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
animation: pulse 2s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
@keyframes fadeIn {
|
||||||
|
from { opacity: 0; transform: translateY(20px); }
|
||||||
|
to { opacity: 1; transform: translateY(0); }
|
||||||
|
}
|
||||||
|
@keyframes pulse {
|
||||||
|
0%, 100% { transform: scale(1); }
|
||||||
|
50% { transform: scale(1.1); }
|
||||||
|
}
|
||||||
|
.links {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
.links a {
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
margin: 0 1rem;
|
||||||
|
padding: 0.5rem 1rem;
|
||||||
|
border: 1px solid #333;
|
||||||
|
border-radius: 4px;
|
||||||
|
display: inline-block;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
.links a:hover {
|
||||||
|
background: #ffffff;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="emoji">🖤</div>
|
||||||
|
<h1>Programming Platform</h1>
|
||||||
|
<p>Welcome to blackboxprogramming.io</p>
|
||||||
|
<p>BlackRoad Infrastructure • Live and Running</p>
|
||||||
|
<div class="links">
|
||||||
|
<a href="/api">API</a>
|
||||||
|
<a href="https://blackroad.io">Main Site</a>
|
||||||
|
<a href="https://docs.blackroad.io">Docs</a>
|
||||||
|
</div>
|
||||||
|
<div class="domain">blackboxprogramming.io</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
89
sites/blackroad.company/index.html
Normal file
89
sites/blackroad.company/index.html
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Corporate Site</title>
|
||||||
|
<style>
|
||||||
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
|
body {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||||||
|
background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
|
||||||
|
color: #ffffff;
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
max-width: 800px;
|
||||||
|
text-align: center;
|
||||||
|
animation: fadeIn 1s ease-in;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-size: 3rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
background: linear-gradient(135deg, #ffffff 0%, #999999 100%);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
font-size: 1.25rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
color: #cccccc;
|
||||||
|
}
|
||||||
|
.domain {
|
||||||
|
font-family: 'Courier New', monospace;
|
||||||
|
color: #666;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
margin-top: 3rem;
|
||||||
|
}
|
||||||
|
.emoji {
|
||||||
|
font-size: 4rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
animation: pulse 2s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
@keyframes fadeIn {
|
||||||
|
from { opacity: 0; transform: translateY(20px); }
|
||||||
|
to { opacity: 1; transform: translateY(0); }
|
||||||
|
}
|
||||||
|
@keyframes pulse {
|
||||||
|
0%, 100% { transform: scale(1); }
|
||||||
|
50% { transform: scale(1.1); }
|
||||||
|
}
|
||||||
|
.links {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
.links a {
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
margin: 0 1rem;
|
||||||
|
padding: 0.5rem 1rem;
|
||||||
|
border: 1px solid #333;
|
||||||
|
border-radius: 4px;
|
||||||
|
display: inline-block;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
.links a:hover {
|
||||||
|
background: #ffffff;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="emoji">🖤</div>
|
||||||
|
<h1>Corporate Site</h1>
|
||||||
|
<p>Welcome to blackroad.company</p>
|
||||||
|
<p>BlackRoad Infrastructure • Live and Running</p>
|
||||||
|
<div class="links">
|
||||||
|
<a href="/api">API</a>
|
||||||
|
<a href="https://blackroad.io">Main Site</a>
|
||||||
|
<a href="https://docs.blackroad.io">Docs</a>
|
||||||
|
</div>
|
||||||
|
<div class="domain">blackroad.company</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
89
sites/blackroad.io/index.html
Normal file
89
sites/blackroad.io/index.html
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Main BlackRoad Platform</title>
|
||||||
|
<style>
|
||||||
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
|
body {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||||||
|
background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
|
||||||
|
color: #ffffff;
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
max-width: 800px;
|
||||||
|
text-align: center;
|
||||||
|
animation: fadeIn 1s ease-in;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-size: 3rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
background: linear-gradient(135deg, #ffffff 0%, #999999 100%);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
font-size: 1.25rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
color: #cccccc;
|
||||||
|
}
|
||||||
|
.domain {
|
||||||
|
font-family: 'Courier New', monospace;
|
||||||
|
color: #666;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
margin-top: 3rem;
|
||||||
|
}
|
||||||
|
.emoji {
|
||||||
|
font-size: 4rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
animation: pulse 2s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
@keyframes fadeIn {
|
||||||
|
from { opacity: 0; transform: translateY(20px); }
|
||||||
|
to { opacity: 1; transform: translateY(0); }
|
||||||
|
}
|
||||||
|
@keyframes pulse {
|
||||||
|
0%, 100% { transform: scale(1); }
|
||||||
|
50% { transform: scale(1.1); }
|
||||||
|
}
|
||||||
|
.links {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
.links a {
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
margin: 0 1rem;
|
||||||
|
padding: 0.5rem 1rem;
|
||||||
|
border: 1px solid #333;
|
||||||
|
border-radius: 4px;
|
||||||
|
display: inline-block;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
.links a:hover {
|
||||||
|
background: #ffffff;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="emoji">🖤</div>
|
||||||
|
<h1>Main BlackRoad Platform</h1>
|
||||||
|
<p>Welcome to blackroad.io</p>
|
||||||
|
<p>BlackRoad Infrastructure • Live and Running</p>
|
||||||
|
<div class="links">
|
||||||
|
<a href="/api">API</a>
|
||||||
|
<a href="https://blackroad.io">Main Site</a>
|
||||||
|
<a href="https://docs.blackroad.io">Docs</a>
|
||||||
|
</div>
|
||||||
|
<div class="domain">blackroad.io</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
89
sites/blackroad.network/index.html
Normal file
89
sites/blackroad.network/index.html
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Network Infrastructure</title>
|
||||||
|
<style>
|
||||||
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
|
body {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||||||
|
background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
|
||||||
|
color: #ffffff;
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
max-width: 800px;
|
||||||
|
text-align: center;
|
||||||
|
animation: fadeIn 1s ease-in;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-size: 3rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
background: linear-gradient(135deg, #ffffff 0%, #999999 100%);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
font-size: 1.25rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
color: #cccccc;
|
||||||
|
}
|
||||||
|
.domain {
|
||||||
|
font-family: 'Courier New', monospace;
|
||||||
|
color: #666;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
margin-top: 3rem;
|
||||||
|
}
|
||||||
|
.emoji {
|
||||||
|
font-size: 4rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
animation: pulse 2s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
@keyframes fadeIn {
|
||||||
|
from { opacity: 0; transform: translateY(20px); }
|
||||||
|
to { opacity: 1; transform: translateY(0); }
|
||||||
|
}
|
||||||
|
@keyframes pulse {
|
||||||
|
0%, 100% { transform: scale(1); }
|
||||||
|
50% { transform: scale(1.1); }
|
||||||
|
}
|
||||||
|
.links {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
.links a {
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
margin: 0 1rem;
|
||||||
|
padding: 0.5rem 1rem;
|
||||||
|
border: 1px solid #333;
|
||||||
|
border-radius: 4px;
|
||||||
|
display: inline-block;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
.links a:hover {
|
||||||
|
background: #ffffff;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="emoji">🖤</div>
|
||||||
|
<h1>Network Infrastructure</h1>
|
||||||
|
<p>Welcome to blackroad.network</p>
|
||||||
|
<p>BlackRoad Infrastructure • Live and Running</p>
|
||||||
|
<div class="links">
|
||||||
|
<a href="/api">API</a>
|
||||||
|
<a href="https://blackroad.io">Main Site</a>
|
||||||
|
<a href="https://docs.blackroad.io">Docs</a>
|
||||||
|
</div>
|
||||||
|
<div class="domain">blackroad.network</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
89
sites/blackroad.systems/index.html
Normal file
89
sites/blackroad.systems/index.html
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Systems Architecture</title>
|
||||||
|
<style>
|
||||||
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
|
body {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||||||
|
background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
|
||||||
|
color: #ffffff;
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
max-width: 800px;
|
||||||
|
text-align: center;
|
||||||
|
animation: fadeIn 1s ease-in;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-size: 3rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
background: linear-gradient(135deg, #ffffff 0%, #999999 100%);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
font-size: 1.25rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
color: #cccccc;
|
||||||
|
}
|
||||||
|
.domain {
|
||||||
|
font-family: 'Courier New', monospace;
|
||||||
|
color: #666;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
margin-top: 3rem;
|
||||||
|
}
|
||||||
|
.emoji {
|
||||||
|
font-size: 4rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
animation: pulse 2s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
@keyframes fadeIn {
|
||||||
|
from { opacity: 0; transform: translateY(20px); }
|
||||||
|
to { opacity: 1; transform: translateY(0); }
|
||||||
|
}
|
||||||
|
@keyframes pulse {
|
||||||
|
0%, 100% { transform: scale(1); }
|
||||||
|
50% { transform: scale(1.1); }
|
||||||
|
}
|
||||||
|
.links {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
.links a {
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
margin: 0 1rem;
|
||||||
|
padding: 0.5rem 1rem;
|
||||||
|
border: 1px solid #333;
|
||||||
|
border-radius: 4px;
|
||||||
|
display: inline-block;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
.links a:hover {
|
||||||
|
background: #ffffff;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="emoji">🖤</div>
|
||||||
|
<h1>Systems Architecture</h1>
|
||||||
|
<p>Welcome to blackroad.systems</p>
|
||||||
|
<p>BlackRoad Infrastructure • Live and Running</p>
|
||||||
|
<div class="links">
|
||||||
|
<a href="/api">API</a>
|
||||||
|
<a href="https://blackroad.io">Main Site</a>
|
||||||
|
<a href="https://docs.blackroad.io">Docs</a>
|
||||||
|
</div>
|
||||||
|
<div class="domain">blackroad.systems</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
89
sites/blackroadai.com/index.html
Normal file
89
sites/blackroadai.com/index.html
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>AI & Machine Learning Platform</title>
|
||||||
|
<style>
|
||||||
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
|
body {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||||||
|
background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
|
||||||
|
color: #ffffff;
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
max-width: 800px;
|
||||||
|
text-align: center;
|
||||||
|
animation: fadeIn 1s ease-in;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-size: 3rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
background: linear-gradient(135deg, #ffffff 0%, #999999 100%);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
font-size: 1.25rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
color: #cccccc;
|
||||||
|
}
|
||||||
|
.domain {
|
||||||
|
font-family: 'Courier New', monospace;
|
||||||
|
color: #666;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
margin-top: 3rem;
|
||||||
|
}
|
||||||
|
.emoji {
|
||||||
|
font-size: 4rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
animation: pulse 2s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
@keyframes fadeIn {
|
||||||
|
from { opacity: 0; transform: translateY(20px); }
|
||||||
|
to { opacity: 1; transform: translateY(0); }
|
||||||
|
}
|
||||||
|
@keyframes pulse {
|
||||||
|
0%, 100% { transform: scale(1); }
|
||||||
|
50% { transform: scale(1.1); }
|
||||||
|
}
|
||||||
|
.links {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
.links a {
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
margin: 0 1rem;
|
||||||
|
padding: 0.5rem 1rem;
|
||||||
|
border: 1px solid #333;
|
||||||
|
border-radius: 4px;
|
||||||
|
display: inline-block;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
.links a:hover {
|
||||||
|
background: #ffffff;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="emoji">🖤</div>
|
||||||
|
<h1>AI & Machine Learning Platform</h1>
|
||||||
|
<p>Welcome to blackroadai.com</p>
|
||||||
|
<p>BlackRoad Infrastructure • Live and Running</p>
|
||||||
|
<div class="links">
|
||||||
|
<a href="/api">API</a>
|
||||||
|
<a href="https://blackroad.io">Main Site</a>
|
||||||
|
<a href="https://docs.blackroad.io">Docs</a>
|
||||||
|
</div>
|
||||||
|
<div class="domain">blackroadai.com</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
89
sites/blackroadqi.com/index.html
Normal file
89
sites/blackroadqi.com/index.html
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Quantum Intelligence</title>
|
||||||
|
<style>
|
||||||
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
|
body {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||||||
|
background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
|
||||||
|
color: #ffffff;
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
max-width: 800px;
|
||||||
|
text-align: center;
|
||||||
|
animation: fadeIn 1s ease-in;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-size: 3rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
background: linear-gradient(135deg, #ffffff 0%, #999999 100%);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
font-size: 1.25rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
color: #cccccc;
|
||||||
|
}
|
||||||
|
.domain {
|
||||||
|
font-family: 'Courier New', monospace;
|
||||||
|
color: #666;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
margin-top: 3rem;
|
||||||
|
}
|
||||||
|
.emoji {
|
||||||
|
font-size: 4rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
animation: pulse 2s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
@keyframes fadeIn {
|
||||||
|
from { opacity: 0; transform: translateY(20px); }
|
||||||
|
to { opacity: 1; transform: translateY(0); }
|
||||||
|
}
|
||||||
|
@keyframes pulse {
|
||||||
|
0%, 100% { transform: scale(1); }
|
||||||
|
50% { transform: scale(1.1); }
|
||||||
|
}
|
||||||
|
.links {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
.links a {
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
margin: 0 1rem;
|
||||||
|
padding: 0.5rem 1rem;
|
||||||
|
border: 1px solid #333;
|
||||||
|
border-radius: 4px;
|
||||||
|
display: inline-block;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
.links a:hover {
|
||||||
|
background: #ffffff;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="emoji">🖤</div>
|
||||||
|
<h1>Quantum Intelligence</h1>
|
||||||
|
<p>Welcome to blackroadqi.com</p>
|
||||||
|
<p>BlackRoad Infrastructure • Live and Running</p>
|
||||||
|
<div class="links">
|
||||||
|
<a href="/api">API</a>
|
||||||
|
<a href="https://blackroad.io">Main Site</a>
|
||||||
|
<a href="https://docs.blackroad.io">Docs</a>
|
||||||
|
</div>
|
||||||
|
<div class="domain">blackroadqi.com</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
89
sites/blackroadquantum.com/index.html
Normal file
89
sites/blackroadquantum.com/index.html
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Quantum Computing</title>
|
||||||
|
<style>
|
||||||
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
|
body {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||||||
|
background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
|
||||||
|
color: #ffffff;
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
max-width: 800px;
|
||||||
|
text-align: center;
|
||||||
|
animation: fadeIn 1s ease-in;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-size: 3rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
background: linear-gradient(135deg, #ffffff 0%, #999999 100%);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
font-size: 1.25rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
color: #cccccc;
|
||||||
|
}
|
||||||
|
.domain {
|
||||||
|
font-family: 'Courier New', monospace;
|
||||||
|
color: #666;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
margin-top: 3rem;
|
||||||
|
}
|
||||||
|
.emoji {
|
||||||
|
font-size: 4rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
animation: pulse 2s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
@keyframes fadeIn {
|
||||||
|
from { opacity: 0; transform: translateY(20px); }
|
||||||
|
to { opacity: 1; transform: translateY(0); }
|
||||||
|
}
|
||||||
|
@keyframes pulse {
|
||||||
|
0%, 100% { transform: scale(1); }
|
||||||
|
50% { transform: scale(1.1); }
|
||||||
|
}
|
||||||
|
.links {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
.links a {
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
margin: 0 1rem;
|
||||||
|
padding: 0.5rem 1rem;
|
||||||
|
border: 1px solid #333;
|
||||||
|
border-radius: 4px;
|
||||||
|
display: inline-block;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
.links a:hover {
|
||||||
|
background: #ffffff;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="emoji">🖤</div>
|
||||||
|
<h1>Quantum Computing</h1>
|
||||||
|
<p>Welcome to blackroadquantum.com</p>
|
||||||
|
<p>BlackRoad Infrastructure • Live and Running</p>
|
||||||
|
<div class="links">
|
||||||
|
<a href="/api">API</a>
|
||||||
|
<a href="https://blackroad.io">Main Site</a>
|
||||||
|
<a href="https://docs.blackroad.io">Docs</a>
|
||||||
|
</div>
|
||||||
|
<div class="domain">blackroadquantum.com</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
89
sites/lucidia.studio/index.html
Normal file
89
sites/lucidia.studio/index.html
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Creative Studio</title>
|
||||||
|
<style>
|
||||||
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
|
body {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||||||
|
background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
|
||||||
|
color: #ffffff;
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
max-width: 800px;
|
||||||
|
text-align: center;
|
||||||
|
animation: fadeIn 1s ease-in;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-size: 3rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
background: linear-gradient(135deg, #ffffff 0%, #999999 100%);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
font-size: 1.25rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
color: #cccccc;
|
||||||
|
}
|
||||||
|
.domain {
|
||||||
|
font-family: 'Courier New', monospace;
|
||||||
|
color: #666;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
margin-top: 3rem;
|
||||||
|
}
|
||||||
|
.emoji {
|
||||||
|
font-size: 4rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
animation: pulse 2s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
@keyframes fadeIn {
|
||||||
|
from { opacity: 0; transform: translateY(20px); }
|
||||||
|
to { opacity: 1; transform: translateY(0); }
|
||||||
|
}
|
||||||
|
@keyframes pulse {
|
||||||
|
0%, 100% { transform: scale(1); }
|
||||||
|
50% { transform: scale(1.1); }
|
||||||
|
}
|
||||||
|
.links {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
.links a {
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
margin: 0 1rem;
|
||||||
|
padding: 0.5rem 1rem;
|
||||||
|
border: 1px solid #333;
|
||||||
|
border-radius: 4px;
|
||||||
|
display: inline-block;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
.links a:hover {
|
||||||
|
background: #ffffff;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="emoji">🖤</div>
|
||||||
|
<h1>Creative Studio</h1>
|
||||||
|
<p>Welcome to lucidia.studio</p>
|
||||||
|
<p>BlackRoad Infrastructure • Live and Running</p>
|
||||||
|
<div class="links">
|
||||||
|
<a href="/api">API</a>
|
||||||
|
<a href="https://blackroad.io">Main Site</a>
|
||||||
|
<a href="https://docs.blackroad.io">Docs</a>
|
||||||
|
</div>
|
||||||
|
<div class="domain">lucidia.studio</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
89
sites/lucidiaqi.com/index.html
Normal file
89
sites/lucidiaqi.com/index.html
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Lucidia AI Platform</title>
|
||||||
|
<style>
|
||||||
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
|
body {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||||||
|
background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
|
||||||
|
color: #ffffff;
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
max-width: 800px;
|
||||||
|
text-align: center;
|
||||||
|
animation: fadeIn 1s ease-in;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-size: 3rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
background: linear-gradient(135deg, #ffffff 0%, #999999 100%);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
font-size: 1.25rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
color: #cccccc;
|
||||||
|
}
|
||||||
|
.domain {
|
||||||
|
font-family: 'Courier New', monospace;
|
||||||
|
color: #666;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
margin-top: 3rem;
|
||||||
|
}
|
||||||
|
.emoji {
|
||||||
|
font-size: 4rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
animation: pulse 2s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
@keyframes fadeIn {
|
||||||
|
from { opacity: 0; transform: translateY(20px); }
|
||||||
|
to { opacity: 1; transform: translateY(0); }
|
||||||
|
}
|
||||||
|
@keyframes pulse {
|
||||||
|
0%, 100% { transform: scale(1); }
|
||||||
|
50% { transform: scale(1.1); }
|
||||||
|
}
|
||||||
|
.links {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
.links a {
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
margin: 0 1rem;
|
||||||
|
padding: 0.5rem 1rem;
|
||||||
|
border: 1px solid #333;
|
||||||
|
border-radius: 4px;
|
||||||
|
display: inline-block;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
.links a:hover {
|
||||||
|
background: #ffffff;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="emoji">🖤</div>
|
||||||
|
<h1>Lucidia AI Platform</h1>
|
||||||
|
<p>Welcome to lucidiaqi.com</p>
|
||||||
|
<p>BlackRoad Infrastructure • Live and Running</p>
|
||||||
|
<div class="links">
|
||||||
|
<a href="/api">API</a>
|
||||||
|
<a href="https://blackroad.io">Main Site</a>
|
||||||
|
<a href="https://docs.blackroad.io">Docs</a>
|
||||||
|
</div>
|
||||||
|
<div class="domain">lucidiaqi.com</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
89
sites/roadchain.io/index.html
Normal file
89
sites/roadchain.io/index.html
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Blockchain Explorer</title>
|
||||||
|
<style>
|
||||||
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
|
body {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||||||
|
background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
|
||||||
|
color: #ffffff;
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
max-width: 800px;
|
||||||
|
text-align: center;
|
||||||
|
animation: fadeIn 1s ease-in;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-size: 3rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
background: linear-gradient(135deg, #ffffff 0%, #999999 100%);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
font-size: 1.25rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
color: #cccccc;
|
||||||
|
}
|
||||||
|
.domain {
|
||||||
|
font-family: 'Courier New', monospace;
|
||||||
|
color: #666;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
margin-top: 3rem;
|
||||||
|
}
|
||||||
|
.emoji {
|
||||||
|
font-size: 4rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
animation: pulse 2s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
@keyframes fadeIn {
|
||||||
|
from { opacity: 0; transform: translateY(20px); }
|
||||||
|
to { opacity: 1; transform: translateY(0); }
|
||||||
|
}
|
||||||
|
@keyframes pulse {
|
||||||
|
0%, 100% { transform: scale(1); }
|
||||||
|
50% { transform: scale(1.1); }
|
||||||
|
}
|
||||||
|
.links {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
.links a {
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
margin: 0 1rem;
|
||||||
|
padding: 0.5rem 1rem;
|
||||||
|
border: 1px solid #333;
|
||||||
|
border-radius: 4px;
|
||||||
|
display: inline-block;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
.links a:hover {
|
||||||
|
background: #ffffff;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="emoji">🖤</div>
|
||||||
|
<h1>Blockchain Explorer</h1>
|
||||||
|
<p>Welcome to roadchain.io</p>
|
||||||
|
<p>BlackRoad Infrastructure • Live and Running</p>
|
||||||
|
<div class="links">
|
||||||
|
<a href="/api">API</a>
|
||||||
|
<a href="https://blackroad.io">Main Site</a>
|
||||||
|
<a href="https://docs.blackroad.io">Docs</a>
|
||||||
|
</div>
|
||||||
|
<div class="domain">roadchain.io</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
89
sites/roadcoin.io/index.html
Normal file
89
sites/roadcoin.io/index.html
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Cryptocurrency Platform</title>
|
||||||
|
<style>
|
||||||
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
|
body {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||||||
|
background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
|
||||||
|
color: #ffffff;
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
max-width: 800px;
|
||||||
|
text-align: center;
|
||||||
|
animation: fadeIn 1s ease-in;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-size: 3rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
background: linear-gradient(135deg, #ffffff 0%, #999999 100%);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
font-size: 1.25rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
color: #cccccc;
|
||||||
|
}
|
||||||
|
.domain {
|
||||||
|
font-family: 'Courier New', monospace;
|
||||||
|
color: #666;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
margin-top: 3rem;
|
||||||
|
}
|
||||||
|
.emoji {
|
||||||
|
font-size: 4rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
animation: pulse 2s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
@keyframes fadeIn {
|
||||||
|
from { opacity: 0; transform: translateY(20px); }
|
||||||
|
to { opacity: 1; transform: translateY(0); }
|
||||||
|
}
|
||||||
|
@keyframes pulse {
|
||||||
|
0%, 100% { transform: scale(1); }
|
||||||
|
50% { transform: scale(1.1); }
|
||||||
|
}
|
||||||
|
.links {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
.links a {
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
margin: 0 1rem;
|
||||||
|
padding: 0.5rem 1rem;
|
||||||
|
border: 1px solid #333;
|
||||||
|
border-radius: 4px;
|
||||||
|
display: inline-block;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
.links a:hover {
|
||||||
|
background: #ffffff;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="emoji">🖤</div>
|
||||||
|
<h1>Cryptocurrency Platform</h1>
|
||||||
|
<p>Welcome to roadcoin.io</p>
|
||||||
|
<p>BlackRoad Infrastructure • Live and Running</p>
|
||||||
|
<div class="links">
|
||||||
|
<a href="/api">API</a>
|
||||||
|
<a href="https://blackroad.io">Main Site</a>
|
||||||
|
<a href="https://docs.blackroad.io">Docs</a>
|
||||||
|
</div>
|
||||||
|
<div class="domain">roadcoin.io</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user