File size: 2,067 Bytes
f94ed89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>AutoML Builder</title>
  <script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-50 text-gray-800">

  <header class="bg-purple-600 text-white py-4 shadow">
    <div class="container mx-auto flex justify-between items-center px-4">
      <h1 class="text-2xl font-bold">🤖 AutoML Builder</h1>
      <nav class="space-x-6">
        <a href="#" class="hover:underline">Home</a>
        <a href="#" class="hover:underline">Templates</a>
        <a href="#" class="hover:underline">Documentation</a>
        <a href="#" class="hover:underline">Pricing</a>
        <button class="bg-white text-purple-600 font-semibold px-4 py-1 rounded-full hover:bg-purple-100">Sign In</button>
      </nav>
    </div>
  </header>

  <main class="text-center py-16 px-4">
    <h2 class="text-4xl font-bold mb-4">Build Your AI Model in Minutes</h2>
    <p class="text-lg mb-6">Our no-code AutoML platform helps you create state-of-the-art machine learning models without writing a single line of code.</p>
    <div class="space-x-4">
      <a href="/gradio" class="bg-purple-600 text-white px-6 py-2 rounded-full text-lg hover:bg-purple-700">Start Building</a>
      <a href="#" class="text-purple-600 border border-purple-600 px-6 py-2 rounded-full text-lg hover:bg-purple-50">Watch Demo</a>
    </div>
  </main>

  <section class="bg-white py-10 px-4 rounded shadow max-w-4xl mx-auto">
    <h3 class="text-xl font-semibold text-purple-700 mb-4">Create New Model</h3>
    <ol class="grid grid-cols-2 md:grid-cols-4 gap-4 text-left">
      <li><strong>Step 1</strong><br>Data Source</li>
      <li><strong>Step 2</strong><br>Model Type</li>
      <li><strong>Step 3</strong><br>Configuration</li>
      <li><strong>Step 4</strong><br>Deployment</li>
    </ol>
  </section>

  <footer class="text-center text-gray-500 py-6 mt-10">
    &copy; 2025 AutoML Builder. All rights reserved.
  </footer>

</body>
</html>