501 lines
No EOL
15 KiB
HTML
501 lines
No EOL
15 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Provisioning - Infrastructure Automation</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
|
|
background: #0a0a0a;
|
|
color: #fff;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.poster-container {
|
|
width: 100%;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #0f1419 100%);
|
|
position: relative;
|
|
min-height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* Grid Background */
|
|
.grid-bg {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-image:
|
|
linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
|
|
linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
|
|
background-size: 50px 50px;
|
|
animation: gridMove 20s linear infinite;
|
|
}
|
|
|
|
@keyframes gridMove {
|
|
0% { transform: translate(0, 0); }
|
|
100% { transform: translate(50px, 50px); }
|
|
}
|
|
|
|
/* Header with Logo */
|
|
.header {
|
|
padding: 40px 60px;
|
|
position: relative;
|
|
z-index: 10;
|
|
background: linear-gradient(180deg, rgba(10,10,10,0.9) 0%, transparent 100%);
|
|
}
|
|
|
|
.logo-container {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 20px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.logo {
|
|
width: 80px;
|
|
height: 80px;
|
|
background: #00d4ff;
|
|
border-radius: 12px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.logo::before {
|
|
content: "P";
|
|
font-size: 48px;
|
|
font-weight: bold;
|
|
color: #0a0a0a;
|
|
z-index: 2;
|
|
position: relative;
|
|
}
|
|
|
|
.logo::after {
|
|
content: "";
|
|
position: absolute;
|
|
inset: -50%;
|
|
background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
|
|
animation: shimmer 3s infinite;
|
|
}
|
|
|
|
@keyframes shimmer {
|
|
0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
|
|
100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
|
|
}
|
|
|
|
.brand-name {
|
|
font-size: 42px;
|
|
font-weight: 300;
|
|
letter-spacing: 3px;
|
|
text-transform: uppercase;
|
|
background: linear-gradient(90deg, #00d4ff 0%, #00ff88 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
/* Main Title */
|
|
.main-title {
|
|
text-align: center;
|
|
padding: 0 60px;
|
|
margin-bottom: 50px;
|
|
position: relative;
|
|
z-index: 10;
|
|
}
|
|
|
|
.title {
|
|
font-size: 72px;
|
|
font-weight: bold;
|
|
line-height: 1.1;
|
|
margin-bottom: 20px;
|
|
text-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 24px;
|
|
color: #00ff88;
|
|
font-weight: 300;
|
|
letter-spacing: 2px;
|
|
}
|
|
|
|
/* Features Grid */
|
|
.features {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 30px;
|
|
padding: 0 60px;
|
|
margin-bottom: 50px;
|
|
position: relative;
|
|
z-index: 10;
|
|
}
|
|
|
|
.feature-card {
|
|
background: rgba(255, 255, 255, 0.03);
|
|
border: 1px solid rgba(0, 212, 255, 0.2);
|
|
border-radius: 16px;
|
|
padding: 30px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.feature-card:hover {
|
|
transform: translateY(-5px);
|
|
border-color: rgba(0, 212, 255, 0.5);
|
|
box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
|
|
}
|
|
|
|
.feature-icon {
|
|
width: 50px;
|
|
height: 50px;
|
|
background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
|
|
border-radius: 12px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 24px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.feature-title {
|
|
font-size: 20px;
|
|
margin-bottom: 10px;
|
|
color: #fff;
|
|
}
|
|
|
|
.feature-desc {
|
|
font-size: 14px;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
line-height: 1.5;
|
|
}
|
|
|
|
/* Tech Stack */
|
|
.tech-stack {
|
|
padding: 40px 60px;
|
|
position: relative;
|
|
z-index: 10;
|
|
}
|
|
|
|
.tech-header {
|
|
text-align: center;
|
|
font-size: 32px;
|
|
margin-bottom: 30px;
|
|
color: #00d4ff;
|
|
}
|
|
|
|
.tech-grid {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 40px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.tech-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.tech-badge {
|
|
width: 80px;
|
|
height: 80px;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 2px solid rgba(0, 212, 255, 0.3);
|
|
border-radius: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 36px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.tech-badge:hover {
|
|
transform: scale(1.1) rotate(5deg);
|
|
border-color: #00ff88;
|
|
box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
|
|
}
|
|
|
|
.tech-name {
|
|
font-size: 14px;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
}
|
|
|
|
/* ROI Section */
|
|
.roi-section {
|
|
background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 255, 136, 0.1) 100%);
|
|
margin: 40px 60px;
|
|
border-radius: 20px;
|
|
padding: 40px;
|
|
position: relative;
|
|
z-index: 10;
|
|
border: 1px solid rgba(0, 212, 255, 0.2);
|
|
}
|
|
|
|
.roi-title {
|
|
text-align: center;
|
|
font-size: 28px;
|
|
margin-bottom: 30px;
|
|
color: #00ff88;
|
|
}
|
|
|
|
.roi-metrics {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
flex-wrap: wrap;
|
|
gap: 30px;
|
|
}
|
|
|
|
.metric {
|
|
text-align: center;
|
|
}
|
|
|
|
.metric-value {
|
|
font-size: 48px;
|
|
font-weight: bold;
|
|
background: linear-gradient(90deg, #00d4ff 0%, #00ff88 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.metric-label {
|
|
font-size: 14px;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
margin-top: 5px;
|
|
}
|
|
|
|
/* Footer */
|
|
.footer {
|
|
text-align: center;
|
|
padding: 40px 60px;
|
|
position: relative;
|
|
z-index: 10;
|
|
background: linear-gradient(0deg, rgba(10,10,10,0.9) 0%, transparent 100%);
|
|
}
|
|
|
|
.cta {
|
|
display: inline-block;
|
|
padding: 15px 40px;
|
|
background: linear-gradient(90deg, #00d4ff 0%, #00ff88 100%);
|
|
color: #0a0a0a;
|
|
text-decoration: none;
|
|
border-radius: 30px;
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
transition: all 0.3s ease;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.cta:hover {
|
|
transform: scale(1.05);
|
|
box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
|
|
}
|
|
|
|
.website {
|
|
font-size: 20px;
|
|
color: #00d4ff;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
/* Animated particles */
|
|
.particle {
|
|
position: absolute;
|
|
width: 4px;
|
|
height: 4px;
|
|
background: #00d4ff;
|
|
border-radius: 50%;
|
|
opacity: 0.5;
|
|
animation: float 10s infinite linear;
|
|
}
|
|
|
|
@keyframes float {
|
|
from {
|
|
transform: translateY(100vh) translateX(0);
|
|
opacity: 0;
|
|
}
|
|
10% {
|
|
opacity: 0.5;
|
|
}
|
|
90% {
|
|
opacity: 0.5;
|
|
}
|
|
to {
|
|
transform: translateY(-100vh) translateX(100px);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
/* Responsive Design */
|
|
@media (max-width: 768px) {
|
|
.header, .main-title, .features, .tech-stack, .footer {
|
|
padding: 20px 30px;
|
|
}
|
|
|
|
.title {
|
|
font-size: 48px;
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.brand-name {
|
|
font-size: 28px;
|
|
}
|
|
|
|
.roi-section {
|
|
margin: 20px 30px;
|
|
padding: 20px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="poster-container">
|
|
<div class="grid-bg"></div>
|
|
|
|
<!-- Animated Particles -->
|
|
<div class="particle" style="left: 10%; animation-delay: 0s;"></div>
|
|
<div class="particle" style="left: 30%; animation-delay: 2s;"></div>
|
|
<div class="particle" style="left: 50%; animation-delay: 4s;"></div>
|
|
<div class="particle" style="left: 70%; animation-delay: 6s;"></div>
|
|
<div class="particle" style="left: 90%; animation-delay: 8s;"></div>
|
|
|
|
<!-- Header with Logo -->
|
|
<div class="header">
|
|
<div class="logo-container">
|
|
<div class="logo"></div>
|
|
<div class="brand-name">Provisioning</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Main Title -->
|
|
<div class="main-title">
|
|
<h1 class="title">Infrastructure Automation</h1>
|
|
<p class="subtitle">AI-Enhanced • Type-Safe • Universal Deployment</p>
|
|
</div>
|
|
|
|
<!-- Features Grid -->
|
|
<div class="features">
|
|
<div class="feature-card">
|
|
<div class="feature-icon">🚀</div>
|
|
<h3 class="feature-title">Universal Infrastructure</h3>
|
|
<p class="feature-desc">Deploy anywhere: bare metal, cloud, edge computing, and IoT devices with a single framework</p>
|
|
</div>
|
|
|
|
<div class="feature-card">
|
|
<div class="feature-icon">🦀</div>
|
|
<h3 class="feature-title">Rust-Powered</h3>
|
|
<p class="feature-desc">Built with Rust for maximum performance, memory safety, and reliability at scale</p>
|
|
</div>
|
|
|
|
<div class="feature-card">
|
|
<div class="feature-icon">🤖</div>
|
|
<h3 class="feature-title">AI Intelligence</h3>
|
|
<p class="feature-desc">Smart agents optimize deployments, predict failures, and automate complex workflows</p>
|
|
</div>
|
|
|
|
<div class="feature-card">
|
|
<div class="feature-icon">📊</div>
|
|
<h3 class="feature-title">Real-time Analytics</h3>
|
|
<p class="feature-desc">Advanced dashboards and dataframes for monitoring, reporting, and decision-making</p>
|
|
</div>
|
|
|
|
<div class="feature-card">
|
|
<div class="feature-icon">🐚</div>
|
|
<h3 class="feature-title">Nushell Integration</h3>
|
|
<p class="feature-desc">Modern shell for structured data manipulation and powerful automation pipelines</p>
|
|
</div>
|
|
|
|
<div class="feature-card">
|
|
<div class="feature-icon">🔐</div>
|
|
<h3 class="feature-title">Enterprise Security</h3>
|
|
<p class="feature-desc">Cosmian KMS for advanced key management and KCL for secure configuration policies</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Tech Stack -->
|
|
<div class="tech-stack">
|
|
<h2 class="tech-header">Powered By Modern Technology</h2>
|
|
<div class="tech-grid">
|
|
<div class="tech-item">
|
|
<div class="tech-badge">🦀</div>
|
|
<span class="tech-name">Rust</span>
|
|
</div>
|
|
<div class="tech-item">
|
|
<div class="tech-badge">🐚</div>
|
|
<span class="tech-name">Nushell</span>
|
|
</div>
|
|
<div class="tech-item">
|
|
<div class="tech-badge">⚙️</div>
|
|
<span class="tech-name">KCL</span>
|
|
</div>
|
|
<div class="tech-item">
|
|
<div class="tech-badge">🔐</div>
|
|
<span class="tech-name">Cosmian KMS</span>
|
|
</div>
|
|
<div class="tech-item">
|
|
<div class="tech-badge">🔧</div>
|
|
<span class="tech-name">Tokio</span>
|
|
</div>
|
|
<div class="tech-item">
|
|
<div class="tech-badge">🌐</div>
|
|
<span class="tech-name">WebAssembly</span>
|
|
</div>
|
|
<div class="tech-item">
|
|
<div class="tech-badge">📊</div>
|
|
<span class="tech-name">Polars</span>
|
|
</div>
|
|
<div class="tech-item">
|
|
<div class="tech-badge">🔒</div>
|
|
<span class="tech-name">TLS/mTLS</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ROI Section -->
|
|
<div class="roi-section">
|
|
<h2 class="roi-title">Proven Enterprise Results</h2>
|
|
<div class="roi-metrics">
|
|
<div class="metric">
|
|
<div class="metric-value">70%</div>
|
|
<div class="metric-label">Faster Deployment</div>
|
|
</div>
|
|
<div class="metric">
|
|
<div class="metric-value">90%</div>
|
|
<div class="metric-label">Less Downtime</div>
|
|
</div>
|
|
<div class="metric">
|
|
<div class="metric-value">50%</div>
|
|
<div class="metric-label">Cost Reduction</div>
|
|
</div>
|
|
<div class="metric">
|
|
<div class="metric-value">100%</div>
|
|
<div class="metric-label">Type Safety</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Footer -->
|
|
<div class="footer">
|
|
<a href="#" class="cta">Join the Revolution</a>
|
|
<div class="website">provisioning.systems</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |