<!DOCTYPE html>
<html>
<head>
    <title>DAFTECH Infrastructure</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        body {
            font-family: "Segoe UI", Arial, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
            padding: 50px;
            margin: 0;
            min-height: 100vh;
        }
        .container {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255,255,255,0.1);
            padding: 40px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
        }
        h1 {
            font-size: 3em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .subtitle {
            font-size: 1.2em;
            opacity: 0.9;
            margin-bottom: 40px;
        }
        .services {
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        .service-card {
            background: rgba(255,255,255,0.2);
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .service-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.3);
            border-color: rgba(255,255,255,0.5);
        }
        .services a {
            text-decoration: none;
            color: white;
            font-size: 1.2em;
            font-weight: bold;
            display: block;
        }
        .emoji {
            font-size: 2em;
            display: block;
            margin-bottom: 10px;
        }
        .footer {
            margin-top: 50px;
            opacity: 0.7;
            font-size: 0.9em;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>🚀 DAFTECH</h1>
        <p class="subtitle">Infrastructure de Production</p>
        <div class="services">
            <div class="service-card">
               <a href="https://headlamp.daftech.tech">
                   <span class="emoji">☸️</span>
                    Headlamp
               </a>
            </div>
	    <div class="service-card">
                <a href="https://grafana.daftech.tech">
                    <span class="emoji"><img src="/assets/grafana.svg" alt="Grafana" style="width:48px;height:48px;"></span>
                    Grafana
                </a>
            </div>
        </div>
        <div class="footer">
            <p>Powered by Scaleway • Secured by SSL/TLS</p>
        </div>
    </div>
</body>
</html>