-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
303 lines (287 loc) · 14.2 KB
/
index.html
File metadata and controls
303 lines (287 loc) · 14.2 KB
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TryOn - Virtual Fashion Try-On App</title>
<meta name="description" content="Try on clothes virtually with AI-powered fashion technology. Upload your photo, try different clothing items, and see how they look on your model.">
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="favicon/favicon.ico">
<link rel="icon" type="image/svg+xml" href="favicon/favicon-simple.svg">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="manifest" href="favicon/site.webmanifest">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-container">
<div class="nav-logo">
<h2>TryOn</h2>
</div>
<div class="nav-menu">
<a href="#features" class="nav-link">Features</a>
<a href="#how-it-works" class="nav-link">How It Works</a>
<a href="#screenshots" class="nav-link">Screenshots</a>
<a href="#contact" class="nav-link">Contact</a>
<a href="#privacy" class="nav-link">Privacy</a>
</div>
<div class="nav-toggle">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero">
<div class="hero-container">
<div class="hero-content">
<h1 class="hero-title">Virtual Fashion Try-On</h1>
<p class="hero-subtitle">Transform your shopping experience with AI-powered virtual try-on technology. See how clothes look on you before you buy.</p>
<div class="hero-buttons">
<a href="https://itunes.apple.com/app/id6753088899" class="btn btn-primary">
<i class="fab fa-apple"></i>
Download on App Store
</a>
</div>
</div>
<div class="hero-image">
<img src="images/2.jpg" alt="TryOn App Screenshot" class="hero-screenshot">
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="features">
<div class="container">
<h2 class="section-title">Why Choose TryOn?</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-user-circle"></i>
</div>
<h3>AI-Powered Model Creation</h3>
<p>Upload your photo and generate an AI-powered fashion model version of yourself with advanced computer vision technology.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-tshirt"></i>
</div>
<h3>Virtual Try-On</h3>
<p>Try on different clothing items virtually and see how they look on your personalized model in real-time.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-share-alt"></i>
</div>
<h3>Share Extension</h3>
<p>Screenshot clothing from any app or browser and share directly to TryOn for instant virtual try-on experience.</p>
</div>
</div>
</div>
</section>
<!-- How It Works Section -->
<section id="how-it-works" class="how-it-works">
<div class="container">
<h2 class="section-title">How It Works</h2>
<div class="steps-container">
<div class="step">
<div class="step-number">1</div>
<div class="step-content">
<h3>Create Your Model</h3>
<p>Upload your photo and let our AI generate a personalized fashion model version of yourself.</p>
</div>
<div class="step-image">
<img src="images/1.jpg" alt="Create Model Step">
</div>
</div>
<div class="step">
<div class="step-number">2</div>
<div class="step-content">
<h3>Choose Clothing</h3>
<p>Select clothing items from your camera, photo library, or use our share extension to try on clothes from any app.</p>
</div>
<div class="step-image">
<img src="images/2.jpg" alt="Choose Clothing Step">
</div>
</div>
<div class="step">
<div class="step-number">3</div>
<div class="step-content">
<h3>See the Magic</h3>
<p>Watch as our AI seamlessly applies the clothing to your model, giving you a realistic preview of how you'll look.</p>
</div>
<div class="step-image">
<img src="images/4.jpg" alt="Virtual Try-On Result">
</div>
</div>
</div>
</div>
</section>
<!-- Screenshots Section -->
<section id="screenshots" class="screenshots">
<div class="container">
<h2 class="section-title">See TryOn in Action</h2>
<div class="screenshots-grid">
<div class="screenshot-item">
<img src="images/1.jpg" alt="TryOn App Screenshot 1">
<div class="screenshot-overlay">
<span>Model Creation</span>
</div>
</div>
<div class="screenshot-item">
<img src="images/2.jpg" alt="TryOn App Screenshot 2">
<div class="screenshot-overlay">
<span>Clothing Selection</span>
</div>
</div>
<div class="screenshot-item">
<img src="images/3.jpg" alt="TryOn App Screenshot 3">
<div class="screenshot-overlay">
<span>Virtual Try-On</span>
</div>
</div>
<div class="screenshot-item">
<img src="images/4.jpg" alt="TryOn App Screenshot 4">
<div class="screenshot-overlay">
<span>Results</span>
</div>
</div>
<div class="screenshot-item">
<img src="images/5.jpg" alt="TryOn App Screenshot 5">
<div class="screenshot-overlay">
<span>Share Extension</span>
</div>
</div>
<div class="screenshot-item">
<img src="images/6.jpg" alt="TryOn App Screenshot 6">
<div class="screenshot-overlay">
<span>Full Experience</span>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact">
<div class="container">
<h2 class="section-title">Get Support</h2>
<div class="contact-content">
<div class="contact-info">
<h3>Need Help?</h3>
<p>Have questions about TryOn? Our support team is here to help you get the most out of your virtual try-on experience.</p>
<div class="contact-methods">
<div class="contact-method">
<i class="fas fa-envelope"></i>
<div>
<h4>Email Support</h4>
<p>Get in touch with our support team</p>
<a href="mailto:apps@maadotaa.com" class="contact-link">apps@maadotaa.com</a>
</div>
</div>
</div>
</div>
<div class="contact-form">
<h3>Send us a Message</h3>
<form id="contactForm">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="subject">Subject</label>
<input type="text" id="subject" name="subject" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" rows="5" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Send Message</button>
</form>
</div>
</div>
</div>
</section>
<!-- Privacy Section -->
<section id="privacy" class="privacy">
<div class="container">
<h2 class="section-title">Privacy & Data Protection</h2>
<div class="privacy-content">
<div class="privacy-intro">
<h3>Your Privacy Matters</h3>
<p>At TryOn, we are committed to protecting your privacy and ensuring the security of your personal information. Here's how we handle your data:</p>
</div>
<div class="privacy-sections">
<div class="privacy-section">
<h4><i class="fas fa-shield-alt"></i> Image Processing</h4>
<p><strong>We do not retain any images or information related to the user on our servers.</strong> All image processing happens locally on your device or through secure, temporary cloud processing that is deleted after use.</p>
</div>
<div class="privacy-section">
<h4><i class="fas fa-eye-slash"></i> Facial Features Protection</h4>
<p><strong>No facial features are stored on our servers.</strong> Our AI technology processes your images to create virtual try-on results without storing or retaining any biometric data or facial recognition information.</p>
</div>
<div class="privacy-section">
<h4><i class="fas fa-lock"></i> Data Security</h4>
<p>All data transmission is encrypted using industry-standard security protocols. We implement strict access controls and regularly audit our systems to ensure your information remains secure.</p>
</div>
<div class="privacy-section">
<h4><i class="fas fa-user-check"></i> User Control</h4>
<p>You have complete control over your data. You can delete your account and associated data at any time through the app settings. We never share your personal information with third parties without your explicit consent.</p>
</div>
</div>
<div class="privacy-contact">
<h4>Questions About Privacy?</h4>
<p>If you have any questions about our privacy practices or how we handle your data, please contact us at <a href="mailto:apps@maadotaa.com">apps@maadotaa.com</a></p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3>TryOn</h3>
<p>Revolutionizing fashion shopping with AI-powered virtual try-on technology.</p>
</div>
<div class="footer-section">
<h4>Quick Links</h4>
<ul>
<li><a href="#features">Features</a></li>
<li><a href="#how-it-works">How It Works</a></li>
<li><a href="#screenshots">Screenshots</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#privacy">Privacy</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Support</h4>
<ul>
<li><a href="mailto:apps@maadotaa.com">Email Support</a></li>
<li><a href="#privacy">Privacy Policy</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Download</h4>
<a href="https://itunes.apple.com/app/id6753088899" class="btn btn-secondary">
<i class="fab fa-apple"></i>
App Store
</a>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 TryOn. All rights reserved. | Made with ❤️ for fashion lovers</p>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>