<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

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

  <title>Construction AI Demo</title>

  <style>

    html, body {

      margin: 0;

      padding: 0;

      height: 100%;

      font-family: Arial, sans-serif;

      background: #f5f5f5;

    }

    header {

      background: #222;

      color: #fff;

      padding: 1rem;

      text-align: center;

    }

    #chat {

      height: calc(100% - 60px);

    }

  </style>

</head>

<body>

  <header>

    <h1>Construction AI Demo</h1>

    <p>Try out our assistant — book a demo with Calendly when you're ready!</p>

  </header>

  

  <div id="chat"></div>

  

  <script type="module">

    import ChatWidget from "https://cdn.voiceflow.com/widget/bundle.mjs";

    

    ChatWidget.init({

      verify: { projectID: "6781ec6c8259b83ec49b687c" }, // your Project ID

      url: "https://general-runtime.voiceflow.com",

      versionID: "production",

      render: document.getElementById("chat")

    });

  </script>

</body>

</html>