
<!DOCTYPE html>
<html lang="ru">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>icod.kz — проекты</title>
  <style>
    body {
      margin: 0;
      font-family: "Inter", sans-serif;
      background: radial-gradient(circle at center, #ffffff 0%, #f3f4f6 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      color: #111827;
    }
    h1 {
      font-size: 2rem;
      margin-bottom: 1.5rem;
      letter-spacing: 0.5px;
    }
    .links {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    a {
      text-decoration: none;
      color: #fff;
      background: linear-gradient(90deg, #2563eb, #3b82f6);
      padding: 0.8rem 1.8rem;
      border-radius: 10px;
      font-weight: 500;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }
    a:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
    }
    footer {
      margin-top: 2.5rem;
      font-size: 0.9rem;
      color: #6b7280;
    }
  </style>
</head>
<body>
  <h1>Проекты icod.kz</h1>
  <div class="links">
    <a href="https://smart-dining.icod.kz/" target="_blank">Smart Dining</a>
    <a href="https://boost.house/en/" target="_blank">BoostHouse</a>
  </div>
  <footer>© icod.kz, 2025</footer>
</body>
</html>