<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

  <meta name="viewport" content="width=device-width, initial-scale=1.0" />

  <title>Smart Wires Analytics Portal</title>

  <style>

    body {

      margin: 0;

      font-family: Arial, Helvetica, sans-serif;

      background-color: #0f172a;

      color: #ffffff;

      display: flex;

      align-items: center;

      justify-content: center;

      height: 100vh;

      text-align: center;

    }


    .container {

      max-width: 600px;

      padding: 40px;

      border-radius: 12px;

      background: #1e293b;

      box-shadow: 0 10px 25px rgba(0,0,0,0.4);

    }


    h1 {

      margin-bottom: 10px;

      font-size: 28px;

    }


    p {

      opacity: 0.8;

      margin-bottom: 20px;

    }


    .badge {

      display: inline-block;

      padding: 8px 14px;

      border-radius: 20px;

      background-color: #f05125;

      color: #ffffff;

      font-weight: bold;

      font-size: 12px;

      letter-spacing: 1px;

    }

  </style>

</head>

<body>

  <div class="container">

    <div class="badge">INTERNAL USE ONLY</div>

    <h1>Smart Wires Analytics Portal</h1>

    <p>This is a test deployment.</p>

    <p>If you can see this page, the subdomain and hosting are working correctly.</p>

  </div>

</body>

</html>