Jurk06 commited on
Commit
f94ed89
·
verified ·
1 Parent(s): f957c43

Create index.html

Browse files
Files changed (1) hide show
  1. index.html +48 -0
index.html ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
6
+ <title>AutoML Builder</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ </head>
9
+ <body class="bg-gray-50 text-gray-800">
10
+
11
+ <header class="bg-purple-600 text-white py-4 shadow">
12
+ <div class="container mx-auto flex justify-between items-center px-4">
13
+ <h1 class="text-2xl font-bold">🤖 AutoML Builder</h1>
14
+ <nav class="space-x-6">
15
+ <a href="#" class="hover:underline">Home</a>
16
+ <a href="#" class="hover:underline">Templates</a>
17
+ <a href="#" class="hover:underline">Documentation</a>
18
+ <a href="#" class="hover:underline">Pricing</a>
19
+ <button class="bg-white text-purple-600 font-semibold px-4 py-1 rounded-full hover:bg-purple-100">Sign In</button>
20
+ </nav>
21
+ </div>
22
+ </header>
23
+
24
+ <main class="text-center py-16 px-4">
25
+ <h2 class="text-4xl font-bold mb-4">Build Your AI Model in Minutes</h2>
26
+ <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>
27
+ <div class="space-x-4">
28
+ <a href="/gradio" class="bg-purple-600 text-white px-6 py-2 rounded-full text-lg hover:bg-purple-700">Start Building</a>
29
+ <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>
30
+ </div>
31
+ </main>
32
+
33
+ <section class="bg-white py-10 px-4 rounded shadow max-w-4xl mx-auto">
34
+ <h3 class="text-xl font-semibold text-purple-700 mb-4">Create New Model</h3>
35
+ <ol class="grid grid-cols-2 md:grid-cols-4 gap-4 text-left">
36
+ <li><strong>Step 1</strong><br>Data Source</li>
37
+ <li><strong>Step 2</strong><br>Model Type</li>
38
+ <li><strong>Step 3</strong><br>Configuration</li>
39
+ <li><strong>Step 4</strong><br>Deployment</li>
40
+ </ol>
41
+ </section>
42
+
43
+ <footer class="text-center text-gray-500 py-6 mt-10">
44
+ &copy; 2025 AutoML Builder. All rights reserved.
45
+ </footer>
46
+
47
+ </body>
48
+ </html>