File size: 6,088 Bytes
bbc89f6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
025cc15
bbc89f6
 
 
 
 
 
 
 
025cc15
 
bbc89f6
 
 
 
025cc15
bbc89f6
 
025cc15
 
bbc89f6
 
025cc15
 
bbc89f6
 
025cc15
 
bbc89f6
 
 
 
 
 
025cc15
bbc89f6
025cc15
 
bbc89f6
 
025cc15
 
bbc89f6
 
 
 
 
 
025cc15
bbc89f6
 
 
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ObtuAI - Creación Visual con IA</title>
    <style>
        :root {
            --background-color: #0f0f0f;
            --text-color: #ffffff;
            --accent-color: #bb86fc;
            --surface-color: #1e1e1e;
            --border-radius: 20px;
        }
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--background-color);
            margin: 0;
            padding: 0;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
            overflow: hidden;
            padding: 0 20px;
        }
        header {
            background: var(--surface-color);
            padding: 20px 0;
            position: relative;
            border-bottom-left-radius: var(--border-radius);
            border-bottom-right-radius: var(--border-radius);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2em;
            font-weight: bold;
            color: var(--accent-color);
        }
        #google-btn-container {
            position: absolute;
            right: 20px;
            top: 20px;
        }
        .hero {
            background: url('https://news.ubc.ca/wp-content/uploads/2023/08/AdobeStock_559145847.jpeg') no-repeat center center/cover;
            height: 60vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: 20px;
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        .hero-content {
            background: rgba(0,0,0,0.7);
            padding: 30px;
            border-radius: var(--border-radius);
            max-width: 600px;
        }
        .hero-content h1 {
            font-size: 2.5em;
            margin-bottom: 0.5em;
        }
        .features {
            padding: 40px 0;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .feature {
            background: var(--surface-color);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }
        .feature:hover {
            transform: translateY(-5px);
        }
        .testimonials {
            background: var(--surface-color);
            padding: 40px 0;
            border-radius: var(--border-radius);
            margin-top: 40px;
        }
        .testimonial {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            margin-top: 30px;
            border-radius: var(--border-radius);
            transition: transform 0.3s ease;
        }
        .testimonial:hover {
            transform: scale(1.03);
        }
        footer {
            background: var(--surface-color);
            text-align: center;
            padding: 20px 0;
            margin-top: 40px;
            border-top-left-radius: var(--border-radius);
            border-top-right-radius: var(--border-radius);
        }
        @media(max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            #google-btn-container {
                position: static;
                transform: none;
                margin-top: 20px;
            }
            .hero-content {
                padding: 20px;
            }
        }
    </style>
</head>
<body>
    <header>
        <div class="container">
            <div class="header-content">
                <div class="logo">🎨 ObtuAI</div>
                <div id="google-btn-container">
                    <!-- The button will be inserted here by Gradio -->
                </div>
            </div>
        </div>
    </header>

    <div class="container">
        <section class="hero">
            <div class="hero-content">
                <h1>🚀 Welcome to the Future of Visual Creation</h1>
                <p>Create AI-generated images in seconds. Write your idea and watch it turn into art!</p>
            </div>
        </section>

        <section class="features">
            <h2>🌟 Discover the Power of AI Image Generation</h2>
            <div class="feature-grid">
                <div class="feature">
                    <h3>Customize</h3>
                    <p>Feed your model with your own images and styles.</p>
                </div>
                <div class="feature">
                    <h3>Train</h3>
                    <p>Our AI learns from your preferences.</p>
                </div>
                <div class="feature">
                    <h3>Create</h3>
                    <p>Generate images that reflect your unique vision.</p>
                </div>
            </div>
        </section>

        <section class="testimonials">
            <div class="container">
                <h2>💬 What Our Users Say</h2>
                <div class="testimonial">
                    <p>"ObtuAI has revolutionized my creative process. Now I can visualize my wildest ideas in minutes!"</p>
                    <p><strong>- Ana, Graphic Designer</strong></p>
                </div>
                <div class="testimonial">
                    <p>"Training my own model was surprisingly easy. Now I create photos of myself and my clients in seconds."</p>
                    <p><strong>- Carlos, Professional Photographer</strong></p>
                </div>
            </div>
        </section>
    </div>

    <footer>
        <p>ObtuAI - Your wild ideas in pixels with AI.</p>
    </footer>
</body>
</html>