-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
519 lines (495 loc) · 27.1 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
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
<!doctype html>
<html lang="pt-BR">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Bhaina+2:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="stylesheet/style.css">
<link rel="shortcut icon" href="./img/laptop.svg"/>
<title>Grupo do Ti</title>
</head>
<body>
<div class="d-none d-lg-block">
<nav class="navbar navbar-expand-sm fixed-top pt-3 bg-light">
<a href="#header" class="navbar-brand ml-auto">Grupo do Ti</a>
<ul class="navbar-nav ml-auto mr-auto">
<li class="nav-item mx-2"><a href="#services">Serviços</a></li>
<li class="nav-item mx-2"><a href="#portifolio">Portifólio</a></li>
<li class="nav-item mx-2"><a href="#about">Sobre</a></li>
<li class="nav-item mx-2"><a href="#team">Equipe</a></li>
<li class="nav-item mx-2"><a href="#contact">Contato</a></li>
</ul>
</nav>
</div>
<div class="d-block d-lg-none">
<div class="fixed-top">
<nav class="navbar navbar-dark bg-dark">
<a href="#header" class="navbar-brand mr-auto amarelo">Grupo do Ti</a>
<button class="btn btn-warning" type="button" data-toggle="collapse" data-target="#navbarToggleExternalContent" aria-controls="navbarToggleExternalContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</nav>
<div class="collapse" id="navbarToggleExternalContent">
<div class=" navbar navbar-dark bg-dark">
<ul class="navbar-nav">
<li class="nav-item"><a href="#services">Serviços</a></li>
<li class="nav-item"><a href="#portifolio">Portifólio</a></li>
<li class="nav-item"><a href="#about">Sobre</a></li>
<li class="nav-item"><a href="#team">Equipe</a></li>
<li class="nav-item"><a href="#contact">Contato</a></li>
</ul>
</div>
</div>
</div>
</div>
<header id="header" class="bg-dark">
<div class="container py-5 mx-auto">
<div class="row py-5 justify-content-center">
<div class="col-lg-7 py-5 text-center text-white">
<div>
<h5>O APP CERTO PRA VOCÊ</h5>
<h1>GRUPO DO TI</h1>
</div>
<br>
<button class="btn btn-warning px-3 btn-lg text-white">Saber mais</button>
</div>
</div>
</div>
</header>
<section id="services" class="bg-light">
<div class="container py-5 mx-auto">
<div class="row py-5 justify-content-center">
<div class="col text-center">
<h2>SERVIÇOS</h2>
</div>
</div>
<div class="row d-none d-lg-block py-5 px-5 mx-4 justify-content-center">
<table>
<tr>
<th class="px-5 pb-4 mx-5 text-center">
<img src="img/transparency.svg" class="services-img">
</th>
<th class="px-5 pb-4 mx-5 text-center">
<img src="img/support.svg" class="services-img ">
</th>
<th class="px-5 pb-4 mx-5 text-center">
<img src="img/compatible.svg" class="services-img ">
</th>
</tr>
<tr>
<th class="px-5 mx-5 text-center">
Transparência
</th>
<th class="px-5 mx-5 text-center">
Suporte
</th>
<th class="px-5 mx-5 text-center">
Compatibilidade
</th>
</tr>
<tr>
<th class="px-5 mx-5 text-center text-justify text-secondary">
Acompanhamento em tempo real do andamento do projeto pelo cliente.
</th>
<th class="px-5 mx-5 text-center text-justify text-secondary">
Suporte por 6 meses após a entrega do projeto para capacitação no uso do aplicativo e adição de funcionalidades.
</th>
<th class="px-5 mx-5 text-center text-justify text-secondary">
Perfeito funcionamento em todos os dispositivos móveis.
</th>
</tr>
</table>
</div>
<div class="row d-block d-lg-none py-5 px-5 mx-4 justify-content-center text-center">
<img src="img/transparency.svg" class="services-img"><br><br>
<p>Transparência</p>
<p class="text-secondary">Acompanhamento em tempo real do andamento do projeto pelo cliente.</p>
<img src="img/support.svg" class="services-img"><br><br>
<p>Suporte</p>
<p class="text-secondary">Suporte por 6 meses após a entrega do projeto para capacitação no uso do aplicativo e adição de funcionalidades.</p>
<img src="img/compatible.svg" class="services-img"><br><br>
<p>Compatibilidade</p>
<p class="text-secondary">Perfeito funcionamento em todos os dispositivos móveis.</p>
</div>
</section>
<section id="portifolio" class="bg-secondary">
<div class="container pb-2 mx-auto">
<div class="row py-5 justify-content-center">
<div class="col text-center">
<h3>PORTIFÓLIO</h3>
</div>
</div>
<div class="d-none d-md-block">
<div class="row justify-content-center mx-5">
<div class="col fundo mx-4 pt-2 text-center">
<img src="img/instagram.png" class="img-fluid"><br><br>
<h4>Instagram</h4>
<p>App para compartilhamento de fotos com seus amigos e com o mundo</p>
</div>
<div class="col fundo mx-4 pt-2 text-center">
<img src="img/whatsapp.png" class="img-fluid"><br><br>
<h4>Whatsapp</h4>
<p>App de mensagens instantâneas e chamadas de voz</p>
</div>
<div class="col fundo mx-4 pt-2 text-center">
<img src="img/youtube.png" class="img-fluid"><br><br>
<h4>Youtube</h4>
<p>Maior plataforma de streaming de vídeos do mundo</p>
</div>
</div>
<div class="row justify-content-center mx-5 my-5">
<div class="col fundo mx-4 pt-2 my-1 text-center">
<img src="img/picpay.png" class="about-img img-fluid"><br><br>
<h4>PicPay</h4>
<p>App que visa facilitar compras pelo smartphone</p>
</div>
<div class="col fundo mx-4 pt-2 my-1 text-center">
<img src="img/trello.png" class="about-img img-fluid"><br><br>
<h4>Trello</h4>
<p>App para gestão de empresas<br>Utilizado por grandes multinacionais</p>
</div>
<div class="col fundo mx-4 pt-2 my-1 text-center">
<img src="img/spotify.png" class="about-img img-fluid"><br><br>
<h4>Spotify</h4>
<p>Serviço de streaming para ouvir músicas e podcasts</p>
</div>
</div>
</div>
<div class="d-block d-md-none">
<div class="row fundo py-2 px-5 mx-4 mt-4 justify-content-center text-center">
<img src="img/instagram.png" class="img-fluid">
</div>
<div class="row fundo px-5 mx-4 justify-content-center text-center">
<h4>Instagram</h4>
<p>App para compartilhamento de fotos com seus amigos e com o mundo</p>
</div>
<div class="row fundo py-2 px-5 mx-4 mt-4 justify-content-center text-center">
<img src="img/whatsapp.png" class="img-fluid">
</div>
<div class="row fundo px-5 mx-4 justify-content-center text-center">
<h4>Whatsapp</h4>
<p>App de mensagens instantâneas e chamadas de voz</p>
</div>
<div class="row fundo py-2 px-5 mx-4 mt-4 justify-content-center text-center">
<img src="img/youtube.png" class="img-fluid">
</div>
<div class="row fundo px-5 mx-4 justify-content-center text-center">
<h4>Youtube</h4>
<p>Maior plataforma de streaming de vídeos do mundo</p>
</div>
<div class="row fundo py-2 px-5 mx-4 mt-4 justify-content-center text-center">
<img src="img/picpay.png" class="about-img img-fluid">
</div>
<div class="row fundo px-5 mx-4 justify-content-center text-center">
<h4>PicPay</h4>
<p>App que visa facilitar compras pelo smartphone</p>
</div>
<div class="row fundo py-2 px-5 mx-4 mt-4 justify-content-center text-center">
<img src="img/trello.png" class="about-img img-fluid">
</div>
<div class="row fundo px-5 mx-4 justify-content-center text-center">
<h4>Trello</h4>
<p>App para gestão de empresas, utilizado por grandes multinacionais</p>
</div>
<div class="row fundo py-2 px-5 mx-4 mt-4 justify-content-center text-center">
<img src="img/spotify.png" class="about-img img-fluid">
</div>
<div class="row fundo px-5 mx-4 mb-4 justify-content-center text-center">
<h4>Spotify</h4>
<p>Serviço de streaming para ouvir músicas e podcasts</p>
</div>
</div>
</div>
</section>
<section id="about" class="bg-light">
<div class="d-none d-lg-block">
<div class="container mx-auto">
<div class="row py-5 justify-content-center">
<h3>SOBRE</h3>
</div>
<div class="row py-2 justify-content-center">
<div class="col-4 text-right">
<b>2013-2014</b><br>
<b>Inicio</b>
<p>Dois primeiros anos de fundação da empresa em que fizemos somente pequenos projetos enquanto tentávamos nos firmar como empresa.</p>
</div>
<div class="col-1 text-center">
<br><img src="img/seta-esquerda.svg" class="seta">
</div>
<div class="col-2 text-center">
<img src="img/power.svg" class="about-img rounded-circle">
</div>
<div class="col"></div>
</div>
<div class="row py-2 justify-content-center">
<div class="col text-right">
</div>
<div class="col-2 text-center">
<img src="img/picpay.png" class="about-img rounded-circle">
</div>
<div class="col-1 text-center">
<br><img src="img/seta-direita.svg" class="seta">
</div>
<div class="col-4 text-left">
<b>2015</b><br>
<b>Primeiro Grande Projeto</b>
<p>No início de 2015, recebemos uma proposta arriscada de desenvolver um app para facilitar as compras e embarcando de cara no projeto alcançamos nosso primeiro aplicativo conhecido nacionalmente.</p>
</div>
</div>
<div class="row py-2 justify-content-center">
<div class="col-4 text-right">
<b>2017</b><br>
<b>Problemas Internos, Soluções Externas</b>
<p>Após notar dificuldades no gerenciamento de projetos na nossa empresa, o Trello foi desenvolvido para solucionar os nossos problemas e depois lançados ao público para o auxílio na gestão de todo tipo de empresa.</p>
</div>
<div class="col-1 text-center">
<br><img src="img/seta-esquerda.svg" class="seta">
</div>
<div class="col-2 text-center">
<img src="img/trello.png" class="about-img rounded-circle">
</div>
<div class="col text-left">
</div>
</div>
<div class="row py-2 justify-content-center">
<div class="col text-right">
</div>
<div class="col-2 text-center">
<img src="img/worldwide.svg" class="rounded-circle about-img">
</div>
<div class="col-1 text-center">
<br><img src="img/seta-direita.svg" class="seta">
</div>
<div class="col-4 text-left">
<b>2019</b><br>
<b>Grupo do Ti é Internacional</b>
<p>Após 6 anos de muito sucesso no mercado brasileiro, o Grupo do Ti trabalhou na localização dos seus aplicativos para o mercado externo e abriu subsidiárias nos principais mercados mundiais.</p>
</div>
</div>
<div class="row pt-2 pb-5 justify-content-center">
<div class="col-4 text-right">
<b>Agora</b><br>
<b>O Futuro Nos Espera</b>
<p>Mesmo com todo o sucesso alcançado, o Grupo do Ti não entra na zona de conforto e está trabalhando cada vez pra ser a maior empresa de desenvolvimento de aplicativos do mundo.</p>
</div>
<div class="col-1 text-center">
<br><img src="img/seta-esquerda.svg" class="seta">
</div>
<div class="col-2 text-center">
<img src="img/rocket.svg" class="rounded-circle about-img">
</div>
<div class="col text-left">
</div>
</div>
</div>
</div>
<div class="d-block d-lg-none">
<div class="container mx-auto">
<div class="row py-5 justify-content-center">
<h3>SOBRE</h3>
</div>
<div class="row px-5 mx-4 justify-content-center text-center">
<b>2013-2014</b>
</div>
<div class="row px-5 py-3 mx-4 justify-content-center text-center">
<img src="img/power.svg" class="about-img rounded-circle">
</div>
<div class="row px-5 mx-4 justify-content-center text-center">
<b>Inicio</b>
<p>Dois primeiros anos de fundação da empresa em que fizemos somente pequenos projetos enquanto tentávamos nos firmar como empresa.</p>
</div>
<div class="row px-5 mx-4 justify-content-center text-center">
<b>2015</b>
</div>
<div class="row px-5 py-3 mx-4 justify-content-center text-center">
<img src="img/picpay.png" class="about-img rounded-circle">
</div>
<div class="row px-5 mx-4 justify-content-center text-center">
<b>Primeiro Grande Projeto</b>
<p>No início de 2015, recebemos uma proposta arriscada de desenvolver um app para facilitar as compras e embarcando de cara no projeto alcançamos nosso primeiro aplicativo conhecido nacionalmente.</p>
</div>
<div class="row px-5 mx-4 justify-content-center text-center">
<b>2017</b>
</div>
<div class="row px-5 py-3 mx-4 justify-content-center text-center">
<img src="img/trello.png" class="about-img rounded-circle">
</div>
<div class="row px-5 mx-4 justify-content-center text-center">
<b>Problemas Internos, Soluções Externas</b>
<p>Após notar dificuldades no gerenciamento de projetos na nossa empresa, o Trello foi desenvolvido para solucionar os nossos problemas e depois lançados ao público para o auxílio na gestão de todo tipo de empresa.</p>
</div>
<div class="row px-5 mx-4 justify-content-center text-center">
<b>2019</b>
</div>
<div class="row px-5 py-3 mx-4 justify-content-center text-center">
<img src="img/worldwide.svg" class="about-img rounded-circle">
</div>
<div class="row px-5 mx-4 justify-content-center text-center">
<b>Grupo do Ti é Internacional</b>
<p>Após 6 anos de muito sucesso no mercado brasileiro, o Grupo do Ti trabalhou na localização dos seus aplicativos para o mercado externo e abriu subsidiárias nos principais mercados mundiais.</p>
</div>
<div class="row px-5 mx-4 justify-content-center text-center">
<b>Agora</b>
</div>
<div class="row px-5 py-3 mx-4 justify-content-center text-center">
<img src="img/rocket.svg" class="rounded-circle about-img">
</div>
<div class="row px-5 mx-4 justify-content-center text-center">
<b>O Futuro Nos Espera</b>
<p>Mesmo com todo o sucesso alcançado, o Grupo do Ti não entra na zona de conforto e está trabalhando cada vez pra ser a maior empresa de desenvolvimento de aplicativos do mundo.</p>
</div>
</div>
</div>
</section>
<section id="team" class="bg-secondary">
<div class="d-none d-lg-block">
<div class="container py-5 mx-auto">
<div class="row pt-5 justify-content-center">
<h3>TIME</h3>
</div>
<div class="row pt-5 pb-4 justify-content-center">
<div class="col text-center">
<img src="img/Catherine.jpeg" class="services-img rounded-circle">
</div>
<div class="col text-center">
<img src="img/Vitor.jpeg" class="services-img rounded-circle">
</div>
<div class="col text-center">
<img src="img/Matheus.jpeg" class="services-img rounded-circle">
</div>
</div>
<div class="row justify-content-center">
<div class="col text-center">
<h3>Catherine</h3>
</div>
<div class="col text-center">
<h3>Vitor</h3>
</div>
<div class="col text-center">
<h3>Matheus</h3>
</div>
</div>
<div class="row justify-content-center" style="font-size: 20px;">
<div class="col text-center">
Diretora de Marketing
</div>
<div class="col text-center">
CEO
</div>
<div class="col text-center">
Diretor de Projetos
</div>
</div>
<div class="row justify-content-center pt-2">
<div class="col text-center">
<a target="_blank" href="https://www.instagram.com/cath.bm/?hl=pt-br"><img src="img/instagram-preto.svg"class="icons" height="35" width="auto"></a>
</div>
<div class="col text-center">
<a target="_blank" href="https://twitter.com/vtrre306"><img src="img/twitter-preto.svg" class="icons" height="35" width="auto"></a>
<a target="_blank" href="https://www.instagram.com/vtr306/?hl=pt-br"><img src="img/instagram-preto.svg"class="icons" height="35" width="auto"></a>
</div>
<div class="col text-center">
<a target="_blank" href="https://www.instagram.com/mrocha_oficial/?hl=pt-br"><img src="img/instagram-preto.svg"class="icons" height="35" width="auto"></a>
</div>
</div>
</div>
</div>
<div class="d-block d-lg-none">
<div class="row pt-5 justify-content-center">
<h3>TIME</h3>
</div>
<div class="row d-block d-md-none py-5 px-5 mx-4 justify-content-center text-center">
<img src="img/Catherine.jpeg" class="services-img rounded-circle"><br><br>
<p>Catherine</p>
<p>Diretora de Marketing</p>
<a target="_blank" href="https://www.instagram.com/cath.bm/?hl=pt-br"><img src="img/instagram-preto.svg"class="icons" height="35" width="auto"></a><br><br>
<img src="img/Vitor.jpeg" class="services-img rounded-circle"><br><br>
<p>Vitor</p>
<p>CEO</p>
<a target="_blank" href="https://twitter.com/vtrre306"><img src="img/twitter-preto.svg" class="icons" height="35" width="auto"></a>
<a target="_blank" href="https://www.instagram.com/vtr306/?hl=pt-br"><img src="img/instagram-preto.svg"class="icons" height="35" width="auto"></a><br><br>
<img src="img/Matheus.jpeg" class="services-img rounded-circle"><br><br>
<p>Matheus</p>
<p>Diretor de Projetos</p>
<a target="_blank" href="https://www.instagram.com/mrocha_oficial/?hl=pt-br"><img src="img/instagram-preto.svg"class="icons" height="35" width="auto"></a><br><br>
</div>
</div>
</section>
<section id="partners">
<div class="d-none d-lg-block">
<div class="container py-4 mx-auto">
<div class="row justify-content-center">
<img src="img/google-logo.png" class="logos mx-auto">
<img src="img/logo-facebook-png.png" class="logos mx-auto">
<img src="img/telegram-logo.png" class="logos mx-auto">
</div>
</div>
</div>
<div class="d-block d-lg-none">
<div class="container py-4 mx-auto">
<div class="row justify-content-center">
<img src="img/google-logo.png" class="logos2 mx-auto">
<img src="img/logo-facebook-png.png" class="logos2 mx-auto">
<img src="img/telegram-logo.png" class="logos2 mx-auto">
</div>
</div>
</div>
</section>
<section id="contact" class="bg-dark">
<div class="container py-4 mx-auto">
<div class="row py-5 justify-content-center">
<h3 class="text-white">CONTATO</h3>
</div>
<div class="row py-5 justify-content-center">
<div class="col">
<div class="form-group">
<input type="text" class="form-control" placeholder="Seu Nome*"> <br>
<input type="email" class="form-control" placeholder="Seu E-mail*"> <br>
<input type="phone" class="form-control" placeholder="Seu Telefone*">
</div>
</div>
<div class="col">
<div>
<textarea class="form-control" rows="6" placeholder="Sua Mensagem*"></textarea>
</div>
</div>
</div>
<div class="row justify-content-center">
<button type="submit" class="btn btn-warning btn-lg text-white">Enviar Mensagem</button>
</div>
</div>
</section>
<footer class="bg-light">
<div class="d-none d-lg-block">
<div class="container py-2">
<div class="row">
<div class="col text-center">
Copyright © Galera do Ti 2020
</div>
<div class="col text-center">
<a target="_blank" href="https://twitter.com/vtrre306"><img src="img/twitter-preto.svg" class="icons" height="35" width="auto"></a>
<a target="_blank" href="https://www.instagram.com/vtr306/?hl=pt-br"><img src="img/instagram-preto.svg"class="icons" height="35" width="auto"></a>
</div>
<div class="col">
</div>
</div>
</div>
</div>
<div class="d-block d-lg-none">
<div class="container py-2">
<div class="row text-center justify-content-center">
<a target="_blank" href="https://twitter.com/vtrre306"><img src="img/twitter-preto.svg" class="icons" height="35" width="auto"></a>
<a target="_blank" href="https://www.instagram.com/vtr306/?hl=pt-br"><img src="img/instagram-preto.svg"class="icons" height="35" width="auto"></a>
</div>
<div class="row text-center justify-content-center">
Copyright © Galera do Ti 2020
</div>
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</body>
</html>