Initial website

This commit is contained in:
Admin 2025-12-27 13:20:01 -05:00
commit c73f05c9c4
2 changed files with 161 additions and 0 deletions

View File

@ -0,0 +1,16 @@
name: Deploy to Website
on:
push:
branches: [main]
jobs:
deploy:
runs-on: windows
steps:
- uses: actions/checkout@v4
- name: Deploy to site folder
run: |
xcopy /E /Y /I . C:\sites\ironservices\
echo "Deployed to ironservices.io"

145
index.html Normal file
View File

@ -0,0 +1,145 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IronServices - Enterprise Developer Tools</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
min-height: 100vh;
color: #fff;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 0;
}
.logo {
font-size: 1.5rem;
font-weight: 700;
color: #e94560;
}
nav a {
color: #fff;
text-decoration: none;
margin-left: 2rem;
opacity: 0.8;
transition: opacity 0.2s;
}
nav a:hover { opacity: 1; }
.hero {
text-align: center;
padding: 6rem 0;
}
h1 {
font-size: 3.5rem;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, #fff 0%, #e94560 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.tagline {
font-size: 1.25rem;
opacity: 0.8;
max-width: 600px;
margin: 0 auto 3rem;
line-height: 1.6;
}
.products {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
padding: 2rem 0;
}
.product {
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 12px;
padding: 2rem;
transition: transform 0.2s, border-color 0.2s;
}
.product:hover {
transform: translateY(-4px);
border-color: #e94560;
}
.product h3 {
color: #e94560;
margin-bottom: 1rem;
font-size: 1.25rem;
}
.product p {
opacity: 0.7;
line-height: 1.6;
}
.cta {
display: inline-block;
background: #e94560;
color: #fff;
padding: 1rem 2rem;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
transition: background 0.2s;
}
.cta:hover { background: #d63850; }
footer {
text-align: center;
padding: 3rem 0;
opacity: 0.6;
border-top: 1px solid rgba(255,255,255,0.1);
margin-top: 4rem;
}
</style>
</head>
<body>
<div class="container">
<header>
<div class="logo">IronServices</div>
<nav>
<a href="#products">Products</a>
<a href="https://git.ironservices.io">Source</a>
<a href="#docs">Docs</a>
</nav>
</header>
<section class="hero">
<h1>Enterprise Developer Tools</h1>
<p class="tagline">
Professional-grade libraries for licensing, telemetry, and notifications.
Available for .NET, Go, Java, Python, Rust, and JavaScript.
</p>
<a href="#products" class="cta">Explore Products</a>
</section>
<section id="products" class="products">
<div class="product">
<h3>IronLicensing</h3>
<p>Secure software licensing with offline activation, hardware binding, and subscription management.</p>
</div>
<div class="product">
<h3>IronTelemetry</h3>
<p>Privacy-focused telemetry collection with real-time analytics and crash reporting.</p>
</div>
<div class="product">
<h3>IronNotify</h3>
<p>Multi-channel notifications via email, SMS, push, and webhooks with delivery tracking.</p>
</div>
</section>
<footer>
<p>&copy; 2025 MarketAlly LLC. All rights reserved.</p>
</footer>
</div>
</body>
</html>