forked from KwickerHub/WebCraftifyAI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
377 lines (363 loc) · 15.6 KB
/
index.html
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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Homepage| ACES opensource | Easily build your Webpages</title>
<link rel="stylesheet" href="assets/css/home.css" />
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous" />
<link rel="shortcut icon" type="image/x-icon" href="assets/img/brand_kwickerhub/g83.png" />
<!-- fontawesome cdn -->
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
<!-- slider -->
<link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css" />
<!-- footer -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="row">
<div class="col-md-12">
<!-- <div class="container"> -->
<nav class="navbar fixed-top navbar-expand-lg navbar-dark p-md-3">
<div class="container headerNav">
<a class="navbar-brand logo" href="https://kwickerhub.com/"><img
src="assets/img/brand_kwickerhub/kwickerhub.png" /></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<!-- making this section no longer visible -->
<ul style="visibility: hidden" class="navbar-nav mx-auto mb-2 mb-lg-0">
<li class="nav-item dropdown me-3 active" aria-current="page">
<a class="nav-link dropdown-toggle text-white" href="#" id="navbarDropdown" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Templates
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">Action</a></li>
<li>
<a class="dropdown-item" href="#">Another action</a>
</li>
<li>
<hr class="dropdown-divider" />
</li>
<li>
<a class="dropdown-item" href="#">Something else here</a>
</li>
</ul>
</li>
<li class="nav-item me-3">
<a class="nav-link text-white" href="#">Pricing</a>
</li>
<li class="nav-item me-3">
<a class="nav-link text-white" href="#">Enterprises</a>
</li>
<li class="nav-item me-3">
<a class="nav-link text-white" href="#">Jobs</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link text-white dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
More
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">Action</a></li>
<li>
<a class="dropdown-item" href="#">Another action</a>
</li>
<li>
<hr class="dropdown-divider" />
</li>
<li>
<a class="dropdown-item" href="#">Something else here</a>
</li>
</ul>
</li>
</ul>
<div class="d-flex">
<a href="pages/login.html"><button class="btn me-2" id="white-btn">Log in</button></a>
<a href="pages/signup.html"><button class="btn" id="blue-btn">Sign up</button></a>
</div>
</div>
</div>
</nav>
<!-- </div> -->
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="banner w-100 vh-100">
<div class="container">
<div
class="text-white text-content d-flex flex-column align-items-start align-self-center justify-content-start">
<h1 class="bannar-heading text-start">DESIGN. DEVELOP.</h1>
<p class="banner-p text-start">
We can help make your idea come alive. You can design complex
UI/UX designs with little or no knowledge. You can also
build/develop Sites, Web Apps, Mobile Apps with little
technical skills. Come build 'Kwicker'!
</p>
<div>
<a href="pages/dashboard.html">
<button class="banner-btn">
Explore<span class="ms-3 mt-5"><i class="fa fa-sign-in-alt"></i></span>
</button>
</a>
</div>
<br />
<br />
</div>
</div>
</div>
</div>
</div>
<br />
<br />
<br />
<div class="row">
<div class="col-md-12">
<div class="container">
<div class="section-one">
<div class="text-center">
<p class="p-1">Design and Develop</p>
<p class="p-2">
We are bridging the gap between Frontend developers and
designers. You can easily convert your ideas into lines of code.
</p>
</div>
</div>
<div>
<img class="img-fluid w-100 vh-30" src="assets/img/hubpeople.png" alt="People in KwickerHub" />
</div>
</div>
</div>
</div>
<div class="section-two">
<div class="container">
<div class="text-center">
<p class="p-1">
Over 250,000 people & companies will make millions of apps with
Kwicker
</p>
</div>
<div class="text-center mt-5">
<div class="row">
<div class="col-md-3">
<p class="p-2 text-center">GitHub</p>
</div>
<div class="col-md-2">
<p class="p-2 text-center">A1in1</p>
</div>
<div class="col-md-2">
<p class="p-2 text-center">RootHub</p>
</div>
<div class="col-md-2">
<p class="p-2 text-center">ZOOM</p>
</div>
<div class="col-md-3">
<p class="p-2 text-center">Public</p>
</div>
</div>
</div>
</div>
</div>
<div class="section-three">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="image-one">
<img class="img-fluid" style="background-color: #fff" src="assets/img/kwickerhub_collaborate.jpg"
alt="image" />
</div>
</div>
<div class="col-md-6">
<div class="testimony">
<p class="testimony-text">
“<span class="testimony-coloured-1">Kwicker makes you faster in development</span><br />
It is easy to use and in very few minutes, people can easily
create amazing web-applications.”
</p>
<div class="d-flex">
<img height="55px" width="80px" class="img-fluid rounded-circle" src="assets/img/profile_icon2.png"
alt="woman image" />
<p class="testimony-person">Ntem, Kenyor, A1in1 Companies</p>
</div>
</div>
<div class="testimony">
<p class="testimony-text">
“<span class="testimony-coloured-2">We were amazed at how easy it was to make our app</span><br />
in a few hours without knowing how to code. This app has
increased our workflow..”
</p>
<div class="d-flex">
<img height="55px" width="80px" class="img-fluid rounded-circle" src="assets/img/Ellipse (7).png"
alt="woman image" />
<p class="testimony-person">
Kelly Consuegra, Marves Industries
</p>
</div>
</div>
<div class="testimony">
<p class="testimony-text">
“<span class="testimony-coloured-3">
It is a tool worth relating with </span><br />
It helps me increase my efficiency.”
</p>
<div class="d-flex">
<img height="50px" width="80px" class="img-fluid rounded-circle" src="assets/img/Ellipse (6).png"
alt="woman image" />
<p class="testimony-person">Icogrowser, Roynek-T Industries</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section-four">
<div class="container">
<div class="box">
<div class="m-5 box-sub">
<div class="row">
<div class="col-md-6">
<p class="testimony-coloured-1 box-p">Faster Build</p>
<h2 class="box-p2">Building is now faster</h2>
<p class="box-p3">
You can convert your idea into computer programs and lines of
code.
</p>
</div>
<div class="col-md-6">
<!-- <img class="img-fluid" src="assets/img/kwickerhub_maintain.png" alt=""> -->
<img class="img-fluid" src="assets/img/kwickerhub_maintain.png" alt="" />
</div>
</div>
</div>
<div class="m-5 box-sub">
<div class="row">
<div class="col-md-6">
<img class="img-fluid"
src="assets/img/163-1631766_unique-and-responsive-designs-responsive-web-design-mockup 1.png" alt="" />
</div>
<div class="col-md-6">
<p class="testimony-coloured-2 box-p">Build with ease</p>
<h2 class="box-p2">Different Screen-Sizes</h2>
<p class="box-p3">
Manage different screen resolutions with Kwicker and make your
design work more interesting
</p>
</div>
</div>
</div>
<div class="m-5 box-sub">
<div class="row">
<div class="col-md-6">
<p class="testimony-coloured-3 box-p">Stay connected</p>
<h2 class="box-p2">Interact and Connect</h2>
<p class="box-p3">
You can make co-workers and collaborate with another person on
your project. Your work is private and secured otherwise you
choose to share your product link.
</p>
</div>
<div class="col-md-6">
<img class="img-fluid" src="assets/img/windows-FUGfBZDQOwI-unsplash 1.png" alt="" />
</div>
</div>
</div>
</div>
<div class="container">
<footer class="py-5">
<div class="row">
<div class="col-6 col-md-2 mb-3">
<h5>Navigation</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-muted">Home</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-muted">Features</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-muted">Pricing</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-muted">FAQs</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-muted">About</a></li>
</ul>
</div>
<div class="col-6 col-md-2 mb-3">
<h5>Features</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-muted">Projects</a></li>
<li class="nav-item mb-2" id="privacy_area"><a href="pages/privacy_policy.html" class="nav-link p-0 text-muted">Privacy Policy</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-muted">Team</a></li>
</ul>
</div>
<div class="col-6 col-md-2 mb-3">
<h5>Support</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-muted">Contact</a></li>
<li class="nav-item mb-2" id="terms_condition"><a href="pages/terms_and_condition.html" class="nav-link p-0 text-muted">Terms & Conditions</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-muted">Customer Care</a></li>
</ul>
</div>
<div class="col-md-5 offset-md-1 mb-3">
<form>
<h5>Subscribe to our newsletter</h5>
<p>Monthly digest of what's new and exciting from us.</p>
<div class="d-flex flex-column flex-sm-row w-100 gap-2">
<label for="newsletter1" class="visually-hidden">Email address</label>
<input id="newsletter1" type="email" class="form-control" placeholder="Email address">
<button class="btn btn-primary" type="button">Subscribe</button>
</div>
</form>
</div>
</div>
<div class="footer-copyright text-center py-3 mb-0 pb-0">© 2022 Kwicker, Inc. All rights reserved.
<footer class="bg-white text-center text-dark">
<div class="container p-4">
<section class="mb-0">
<a class="btn btn-outline-dark btn-floating m-1" href="https://www.facebook.com" role="button"
id="face" ><i class="fab fa-facebook-f"></i
></a>
<a class="btn btn-outline-dark btn-floating m-1" href="https://www.twitter.com" role="button"
id="twitter" ><i class="fab fa-twitter"></i
></a>
<a class="btn btn-outline-dark btn-floating m-1" href="https://www.google.com" role="button"
id="google" ><i class="fab fa-google"></i
></a>
<a class="btn btn-outline-dark btn-floating m-1" href="https://www.instagram.com" role="button"
id="insta" ><i class="fab fa-instagram"></i
></a>
<a class="btn btn-outline-dark btn-floating m-1" href="https://www.linkedin.com" role="button"
id="link" ><i class="fab fa-linkedin-in"></i
></a>
<a class="btn btn-outline-dark btn-floating m-1" href="https://github.com/" role="button"
><i class="fab fa-github"></i
></a>
</div>
</footer>
</div>
</footer>
</div>
</div>
</div>
<!-- Option 1: Bootstrap Bundle with Popper a -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js"
integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js"
integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13"
crossorigin="anonymous"></script>
<script>
var nav = document.querySelector("nav");
window.addEventListener("scroll", function () {
if (window.pageYOffset > 100) {
nav.classList.add("bg-dark", "shadow");
} else {
nav.classList.remove("bg-dark", "shadow");
}
});
</script>
<script src="https://unpkg.com/swiper@7/swiper-bundle.min.js"></script>
</body>
</html>