<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

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

  <title>TradeAtlasHub</title>

  <link rel="icon" type="image/png" href="logo.png">

  <style>

    body {

      margin: 0;

      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

      background: #fdf7f1 url("hero.png") no-repeat center center;

      background-size: cover;

      color: #3e2b1c;

      text-align: center;

      display: flex;

      flex-direction: column;

      height: 100vh;

      justify-content: center;

      align-items: center;

    }

    .logo {

      width: 100px;

      margin-bottom: 20px;

    }

    h1 {

      font-size: 2.2em;

      margin: 0;

    }

    p {

      font-size: 1em;

      margin: 10px 0 30px;

    }

    .cta {

      background-color: #c67b2c;

      color: white;

      border: none;

      padding: 12px 24px;

      font-size: 1em;

      border-radius: 5px;

      cursor: pointer;

      text-decoration: none;

    }

  </style>

</head>

<body>

  <img src="logo.png" alt="TradeAtlasHub Logo" class="logo" />

  <h1>Hard-to-Find. Easy-to-Connect.</h1>

  <p>From niche hardware to curated wellness — all flows start here.</p>

  <a class="cta" href="https://wa.me/85256208059" target="_blank">Message Us on WhatsApp</a>

</body>

</html>