Files
hireflow/public/index.html
ryan.gogo 95c13a841f Initial commit: Template site for Start an AI Company deployment
- Node.js Express application with modern white UI
- PostgreSQL and Redis integration
- Docker Compose configuration without host port mappings
- Traefik-ready with proper labels
- Health check endpoint

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2026-02-14 05:52:41 +01:00

167 lines
4.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>Template Site - Start an AI Company</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
}
.container {
background: white;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
padding: 60px 40px;
max-width: 800px;
text-align: center;
border: 1px solid rgba(0, 0, 0, 0.05);
}
.logo {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 16px;
margin: 0 auto 30px;
display: flex;
align-items: center;
justify-content: center;
font-size: 40px;
color: white;
font-weight: bold;
}
h1 {
font-size: 2.5rem;
color: #1a202c;
margin-bottom: 20px;
font-weight: 700;
line-height: 1.2;
}
p {
font-size: 1.2rem;
color: #4a5568;
line-height: 1.8;
margin-bottom: 30px;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-top: 40px;
}
.feature {
background: #f7fafc;
padding: 25px 20px;
border-radius: 12px;
border: 1px solid #e2e8f0;
transition: transform 0.2s, box-shadow 0.2s;
}
.feature:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.feature-icon {
font-size: 2rem;
margin-bottom: 10px;
}
.feature-title {
font-weight: 600;
color: #2d3748;
margin-bottom: 8px;
font-size: 1rem;
}
.feature-desc {
font-size: 0.875rem;
color: #718096;
margin: 0;
}
.footer {
margin-top: 50px;
padding-top: 30px;
border-top: 1px solid #e2e8f0;
color: #718096;
font-size: 0.9rem;
}
.status-indicator {
display: inline-block;
width: 10px;
height: 10px;
background: #48bb78;
border-radius: 50%;
margin-right: 8px;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
</style>
</head>
<body>
<div class="container">
<div class="logo">T</div>
<h1>This site is a template site on how to deploy on Start an AI Company servers</h1>
<p>A modern, scalable deployment template featuring Docker Compose, PostgreSQL, Redis, and Traefik integration.</p>
<div class="features">
<div class="feature">
<div class="feature-icon">🐳</div>
<div class="feature-title">Docker Ready</div>
<p class="feature-desc">Containerized with Docker Compose</p>
</div>
<div class="feature">
<div class="feature-icon">🗄️</div>
<div class="feature-title">PostgreSQL</div>
<p class="feature-desc">Robust database solution</p>
</div>
<div class="feature">
<div class="feature-icon"></div>
<div class="feature-title">Redis Cache</div>
<p class="feature-desc">High-performance caching</p>
</div>
<div class="feature">
<div class="feature-icon">🚀</div>
<div class="feature-title">Traefik Ready</div>
<p class="feature-desc">Automatic routing & SSL</p>
</div>
</div>
<div class="footer">
<p>
<span class="status-indicator"></span>
Status: Running on Start an AI Company infrastructure
</p>
</div>
</div>
</body>
</html>