-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
970 lines (826 loc) · 45.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
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
<!DOCTYPE html>
<html id="lang" lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title data-i18n="title">Alphnology</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Nunito:300,300i,400,400i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<script type="text/javascript">
if (typeof (Storage) !== "undefined") {
// Code for localStorage/sessionStorage.
var userLang = localStorage.getItem("userLang")
if (userLang !== null) {
document.getElementById('lang').setAttribute('lang', userLang);
} else {
var userLang = navigator.language || navigator.userLanguage;
localStorage.setItem("userLang", userLang);
document.getElementById('lang').setAttribute('lang', userLang);
}
} else {
// Sorry! No Web Storage support..
var userLang = navigator.language || navigator.userLanguage;
document.getElementById('lang').setAttribute('lang', userLang);
};
</script>
</head>
<body>
<!-- ======= Top Bar ======= -->
<div id="topbar" class="d-flex align-items-center fixed-top">
<div class="container d-flex justify-content-center justify-content-md-between">
<div class="languages d-md-flex align-items-center">
<ul>
<li><a href="#" tabindex="1" class="lang-switch" data-locale="en">English</a></li>
<li>|</li>
<li><a href="#" tabindex="2" class="lang-switch" data-locale="es">Español</a></li>
</ul>
</div>
</div>
</div>
<!-- ======= Top Bar ======= -->
<!-- ======= Header ======= -->
<!-- ======= Header ======= -->
<header id="header" class="header fixed-top">
<div class="container-fluid container-xl d-flex align-items-center justify-content-between">
<a href="index.html" class="logo d-flex align-items-center">
<img src="assets/img/logo.png" alt="">
<!-- <span>Alphnology</span> -->
</a>
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto active" href="#hero" data-i18n="header-navbar-home">Home</a></li>
<li><a class="nav-link scrollto" href="#about" data-i18n="header-navbar-about">About us</a></li>
<li><a class="nav-link scrollto" href="#services" data-i18n="header-navbar-services">Services</a></li>
<li><a class="nav-link scrollto" href="#portfolio" data-i18n="header-navbar-portfolio">Products</a></li>
<!-- <li><a class="nav-link scrollto" href="#team" data-i18n="header-navbar-team">Team</a></li> -->
<li><a class="nav-link scrollto" href="#contact" data-i18n="header-navbar-contact">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
</div>
</header>
<!-- End Header -->
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="hero d-flex align-items-center">
<div class="container">
<div class="row">
<div class="col-lg-6 d-flex flex-column justify-content-center">
<h1 data-aos="fade-up" data-i18n="section-hero-header">We offer solutions to grow your business</h1>
<h2 data-aos="fade-up" data-aos-delay="400" data-i18n="section-hero-details">We are a team of talented
professionals in the development of solutions that meet the needs of business.</h2>
<div data-aos="fade-up" data-aos-delay="600">
<div class="text-center text-lg-start">
<a href="#about"
class="btn-get-started scrollto d-inline-flex align-items-center justify-content-center align-self-center">
<span data-i18n="section-hero-about">Get started</span>
<i class="bi bi-arrow-right"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-6 hero-img" data-aos="zoom-out" data-aos-delay="200">
<img src="assets/img/hero-img.svg" class="img-fluid" alt="">
</div>
</div>
</div>
</section><!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="row gx-0">
<div class="col-lg-6 d-flex flex-column justify-content-center" data-aos="fade-up" data-aos-delay="200">
<div class="content">
<h3 data-i18n="section-about-about">About us</h3>
<h2 data-i18n="section-about-mission">Mission</h2>
<p style="text-align: justify;" data-i18n="section-about-mission-details">We believe that with the right
tools, everyone can achieve their goals. By developing system solutions that meet your needs, we want
to
provide our support so that all of our employees achieve their goals.</p>
<h2 data-i18n="section-about-vision">Vision</h2>
<p style="text-align: justify;" data-i18n="section-about-vision-details">Empower our employees with the
necessary tools to meet their objectives and build a better future.</p>
<h2 data-i18n="history">History</h2>
<p style="text-align: justify;" data-i18n="section-about-history-details">Alliances tend to form in the
most unexpected ways, and even more so in the halls of universities, where young people with great
ideas
(and just as naive) share their thoughts about the world around them.</p>
<div class="text-center text-lg-start">
<a href="history.html"
class="btn-read-more d-inline-flex align-items-center justify-content-center align-self-center">
<span data-i18n="read-more">Read more</span>
<i class="bi bi-arrow-right"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-6 d-flex align-items-center" data-aos="zoom-out" data-aos-delay="200">
<img src="assets/img/about.svg" class="img-fluid" alt="">
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Values Section ======= -->
<section id="values-bullet" class="features">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2 data-i18n="section-values-header">Our values</h2>
<p data-i18n="section-values-details">We believe in our mission and we work towards the future we want.</p>
</header>
<div class="row">
<div class="col-lg-2">
</div>
<div class="col-lg-8 mt-5 mt-lg-0 d-flex">
<div class="row align-self-center gy-4">
<div class="col-md-6" data-aos="zoom-out" data-aos-delay="200">
<div class="feature-box d-flex align-items-center">
<i class="bi bi-check"></i>
<h3 data-i18n="section-values-#1">Passion</h3>
</div>
</div>
<div class="col-md-6" data-aos="zoom-out" data-aos-delay="300">
<div class="feature-box d-flex align-items-center">
<i class="bi bi-check"></i>
<h3 data-i18n="section-values-#2">Change</h3>
</div>
</div>
<div class="col-md-6" data-aos="zoom-out" data-aos-delay="400">
<div class="feature-box d-flex align-items-center">
<i class="bi bi-check"></i>
<h3 data-i18n="section-values-#3">Change</h3>
</div>
</div>
<div class="col-md-6" data-aos="zoom-out" data-aos-delay="500">
<div class="feature-box d-flex align-items-center">
<i class="bi bi-check"></i>
<h3 data-i18n="section-values-#4">Integrity</h3>
</div>
</div>
<div class="col-lg-3">
</div>
<div class="col-md-6" data-aos="zoom-out" data-aos-delay="600">
<div class="feature-box d-flex align-items-center">
<i class="bi bi-check"></i>
<h3 data-i18n="section-values-#5">Productivity</h3>
</div>
</div>
<div class="col-lg-3">
</div>
</div>
</div>
<div class="col-lg-2">
</div>
</div> <!-- / row -->
</div>
</section>
<!-- End Values Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2 data-i18n="section-services-header">Services</h2>
<p data-i18n="section-services-details">Technological multi-services</p>
</header>
<div class="row gy-3">
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="200">
<div class="service-box blue">
<i class="ri-code-box-line icon"></i>
<h3 data-i18n="section-services-header-#1">Software development</h3>
<p data-i18n="section-services-details-#1">We provide support to our users by developing new
applications,
maintaining existing applications, and providing transformative solutions tailored to your business
needs.</p>
<a href="services.html#software-development" class="read-more"><span data-i18n="read-more">Read
More</span> <i class="bi bi-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="300">
<div class="service-box blue">
<i class="ri-database-2-fill icon"></i>
<h3 data-i18n="section-services-header-#2">Data migration (ETL)</h3>
<p data-i18n="section-services-details-#2">Creation and execution of the migration plan for different
data
types and business logic diagrams using the best practices for extraction, transformation , and
loading
of data (ETL), based on robust version control protocols.</p>
<a href="services.html#data-migration" class="read-more"><span data-i18n="read-more">Read More</span> <i
class="bi bi-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="400">
<div class="service-box blue">
<i class="ri-bar-chart-box-line icon"></i>
<h3 data-i18n="section-services-header-#3">Technology project management</h3>
<p data-i18n="section-services-details-#3">Planning, organization, execution and quality assurance of
all
technological projects and business projects in general, using methodologies and best practices in the
market.</p>
<a href="services.html#technology-project-management" class="read-more"><span data-i18n="read-more">Read
More</span> <i class="bi bi-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-2">
</div>
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="500">
<div class="service-box dark-blue">
<i class="ri-service-fill icon"></i>
<h3 data-i18n="section-services-header-#4">Technical consultancy</h3>
<p data-i18n="section-services-details-#4">Personalized advice and the strategic support to successfully
complete the digital transformation of your business.</p>
<a href="services.html#technical-consultancy" class="read-more"><span data-i18n="read-more">Read
More</span>
<i class="bi bi-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="600">
<div class="service-box dark-blue">
<i class="ri-more-fill icon"></i>
<h3 data-i18n="section-services-header-#5">Others</h3>
<p data-i18n="section-services-details-#5">We offer multiple services to support the growth of your
business.</p>
<a href="services.html#others" class="read-more"><span data-i18n="read-more">Read More</span> <i
class="bi bi-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-2">
</div>
</div>
</div>
</section><!-- End Services Section -->
<!-- ======= Portfolio Section ======= -->
<section id="portfolio" class="services">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2 data-i18n="section-products-header">Products</h2>
<p data-i18n="section-products-details">Product Catalogue</p>
</header>
<div class="row gy-3">
<div class="col-lg-3 col-md-6" data-aos="fade-up" data-aos-delay="300">
<div class="service-box blue">
<!-- <i class="ri-robot-line icon"></i> -->
<i class="ri-calendar-check-line icon"></i>
<h3 data-i18n="section-products-header-#9">Timesched</h3>
<p data-i18n="section-products-details-#9">Timesched is an appointment scheduling system for patients,
which allows for complete control over the center`s commitments. This scheduling system facilitates
the efficient administration of medical appointments, providing a comprehensive tool for the management
and tracking of patient schedules.</p>
<a href="products.html#timesched" class="read-more"><span data-i18n="read-more">Read More</span> <i
class="bi bi-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-3 col-md-6" data-aos="fade-up" data-aos-delay="400">
<div class="service-box blue">
<i class="ri-folder-user-line icon"></i>
<h3 data-i18n="section-products-header-#2">Human Resources System</h3>
<p data-i18n="section-products-details-#2">Our solution effectively manages your company`s human
capital.
Efficiently track employee data, automate workflows, and enhance communication. Gain insights, boost
productivity, and nurture a thriving workforce with our robust solution.</p>
<a href="products.html#hrm" class="read-more"><span data-i18n="read-more">Read More</span> <i
class="bi bi-arrow-right"></i></a>
<!-- <a href="assets/pdf/brochures/Recursos Humanos - Alphnology.pdf" class="read-more" target="_blank"><span
data-i18n="read-more">Read More</span> <i class="bi bi-arrow-right"></i></a> -->
</div>
</div>
<div class="col-lg-3 col-md-6" data-aos="fade-up" data-aos-delay="300">
<div class="service-box blue">
<i class="ri-message-3-line icon"></i>
<h3 data-i18n="section-products-header-#10">Chat-Alph</h3>
<p data-i18n="section-products-details-#10">ChatAlph offers tools to manage conversations, build
relationships,
and delight your customers from a single platform, facilitating communication and optimizing the
customer experience.
The centralized platform simplifies management and promotes efficient, personalized customer service.
</p>
<a href="products.html#chat-alph" class="read-more"><span data-i18n="read-more">Read More</span> <i
class="bi bi-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-3 col-md-6" data-aos="fade-up" data-aos-delay="300">
<div class="service-box blue">
<i class="ri-robot-line icon"></i>
<h3 data-i18n="section-products-header-#1">Chat Bot - AI</h3>
<p data-i18n="section-products-details-#1">Our Chatbot solution expands your customer reach
automatically.
Available 24/7, it streamlines support, freeing your team for critical issues. Customizable to your
brand and integrated with multiple channels, it enhances customer experience, satisfaction, and
business
growth.</p>
<a href="products.html#chat-bot" class="read-more"><span data-i18n="read-more">Read More</span> <i
class="bi bi-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-3 col-md-6" data-aos="fade-up" data-aos-delay="500">
<div class="service-box dark-blue">
<i class="ri-customer-service-line icon"></i>
<h3 data-i18n="section-products-header-#3">CRM</h3>
<p data-i18n="section-products-details-#3">Offers an unparalleled level of flexibility. You have the
freedom to customize, build upon, integrate alongside, or even replace any component to perfectly
align
with your specific requirements. The CRM template comes equipped with a wide range of customizable
features that empower you to streamline your sales processes with utmost efficiency. </p>
<a href="products.html#crm" class="read-more"><span data-i18n="read-more">Read More</span>
<i class="bi bi-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-3 col-md-6" data-aos="fade-up" data-aos-delay="500">
<div class="service-box dark-blue">
<i class="ri-hammer-line icon"></i>
<h3 data-i18n="section-products-header-#11">Theodolite</h3>
<p data-i18n="section-products-details-#11">Offers an unparalleled level of flexibility. You have the
freedom to customize, build upon, integrate alongside, or even replace any component to perfectly
align
with your specific requirements. The CRM template comes equipped with a wide range of customizable
features that empower you to streamline your sales processes with utmost efficiency. </p>
<!-- <a href="products.html#crm" class="read-more"><span data-i18n="read-more">Read More</span>
<i class="bi bi-arrow-right"></i></a> -->
</div>
</div>
<div class="col-lg-3 col-md-6" data-aos="fade-up" data-aos-delay="400">
<div class="service-box dark-blue">
<i class="ri-tools-line icon"></i>
<h3 data-i18n="section-products-header-#4">Case Management</h3>
<p data-i18n="section-products-details-#4">Highly advanced Case Management, which offers a remarkable
level of flexibility. You can easily customize, build upon, integrate alongside, or even replace any
component to perfectly align with your specific requirements.</p>
<!-- <a href="#portfolio" class="read-more" target="_blank"><span data-i18n="read-more">Read More</span> <i
class="bi bi-arrow-right"></i></a> -->
</div>
</div>
<div class="col-lg-3 col-md-6" data-aos="fade-up" data-aos-delay="500">
<div class="service-box dark-blue">
<i class="ri-login-box-line icon"></i>
<h3 data-i18n="section-products-header-#5">Single Sign-On (SSO)</h3>
<p data-i18n="section-products-details-#5">Add authentication to applications and secure services with
minimum effort. No need to deal with storing users or authenticating users. SSO system provides user
federation, strong authentication, user management, fine-grained authorization, and more.'</p>
<!-- <a href="#portfolio" class="read-more"><span data-i18n="read-more">Read More</span>
<i class="bi bi-arrow-right"></i></a> -->
</div>
</div>
<div class="col-lg-3 col-md-6" data-aos="fade-up" data-aos-delay="600">
<div class="service-box blue">
<i class="ri-database-2-line icon"></i>
<h3 data-i18n="section-products-header-#6">Change Data Capture (CDC)</h3>
<p data-i18n="section-products-details-#6">Start it up, point it at your databases, and your apps can
start responding to all of the inserts, updates, and deletes that other apps commit to your databases.
CDC is durable and fast, so your apps can respond quickly and never miss an event, even when things go
wrong.</p>
<!-- <a href="#portfolio" class="read-more"><span data-i18n="read-more">Read More</span> <i
class="bi bi-arrow-right"></i></a> -->
</div>
</div>
<div class="col-lg-3 col-md-6" data-aos="fade-up" data-aos-delay="600">
<div class="service-box blue">
<i class="ri-flow-chart icon"></i>
<h3 data-i18n="section-products-header-#7">Workflow</h3>
<p data-i18n="section-products-details-#7">Automation engine that models and executes business
processes.
Workflow will asynchronously handle the execution of each action, working its way around transient
errors and keeping an encrypted, auditable trace of all intermediary states until completion.</p>
<!-- <a href="#portfolio" class="read-more"><span data-i18n="read-more">Read More</span> <i
class="bi bi-arrow-right"></i></a> -->
</div>
</div>
<div class="col-lg-3 col-md-6" data-aos="fade-up" data-aos-delay="600">
<div class="service-box blue">
<i class="ri-home-gear-line icon"></i>
<h3 data-i18n="section-products-header-#8">Proxy - Gateway - LoadBalancer</h3>
<p data-i18n="section-products-details-#8">Simplify networking complexity while designing, deploying,
and
operating applications. Reverse proxy and load balancer that makes deploying microservices easy,
integrates with your existing infrastructure components and configures itself automatically and
dynamically.</p>
<!-- <a href="#portfolio" class="read-more"><span data-i18n="read-more">Read More</span> <i
class="bi bi-arrow-right"></i></a> -->
</div>
</div>
</div>
</div>
</section><!-- End Portfolio Section -->
<!-- ======= Team Section ======= -->
<!-- <section id="team" class="team">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2 data-i18n="section-team-header">Team</h2>
<p data-i18n="section-team-details">Our team</p>
</header>
<div class="row gy-3">
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="200">
<div class="member">
<div class="member-img">
<img src="assets/img/team/fred.jpg" class="img-fluid" alt="">
<div class="social">
<a href="mailto:[email protected]"><i class="bi bi-envelope"></i></a>
<a href="https://twitter.com/fred_pena" target="_blank"><i class="bi bi-twitter"></i></a>
<a href="https://www.linkedin.com/in/fantpena/" target="_blank"><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Freddy Peña</h4>
<span data-i18n="section-team-header-#1">Co-Founder and Software Engineer</span>
<p data-i18n="section-team-details-#1">Software engineer, technology department manager, and teacher.
Master of Web Engineer (Computer Software Engineering) with over ten years of experience in Java
software development (JSE and JEE) and over five years of management and implementation of SAP
Business One projects. Professor at PUCMM`s School of Computer and Telecommunications Engineering, a
member of the Dominican Java Community, and an Open Source enthusiast.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="100">
<div class="member">
<div class="member-img">
<img src="assets/img/team/hector.jpg" class="img-fluid" alt="">
<div class="social">
<a href="mailto:[email protected]"><i class="bi bi-envelope"></i></a>
<a href="https://twitter.com/hectorvent" target="_blank"><i class="bi bi-twitter"></i></a>
<a href="https://www.linkedin.com/in/hectorvent/" target="_blank"><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Hector Ventura</h4>
<span data-i18n="section-team-header-#2">Founder and Software Engineer</span>
<p data-i18n="section-team-details-#2">Systems engineer and teacher by vocation. with more than 10
years
of experience in the development of scalable and high-concurrency systems. I was a professor of
Linux
Systems Administration at the Dominican Free Code Foundation and a professor at the Technological
Institute of the Americas (ITLA). Member of the Dominican Java community and ardent supporter of
open
source software.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="300">
<div class="member">
<div class="member-img">
<img src="assets/img/team/david.jpg" class="img-fluid" alt="">
<div class="social">
<a href="mailto:[email protected]"><i class="bi bi-envelope"></i></a>
<a href="https://www.linkedin.com/in/david-duran-luna/" target="_blank"><i
class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>David Durán</h4>
<span data-i18n="section-team-header-#3">Co-founder and Commercial Director</span>
<p data-i18n="section-team-details-#3">Project manager, consultant and teacher by vocation. Master in
management control (management control), with more than 5 years of experience in project management,
cost analysis and general advice in commercial areas. Professor of the Projects Department at the
Technological University of Santiago UTESA has been teaching for over 3 years. Fan of technology and
its evolution.</p>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- End Team Section -->
<!-- ======= F.A.Q Section ======= -->
<section id="faq" class="faq">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2>F.A.Q</h2>
<p data-i18n="section-faq-header">Frequent questions</p>
</header>
<div class="row">
<div class="col-lg-2"></div>
<div class="col-lg-8">
<!-- F.A.Q List 1-->
<div class="accordion accordion-flush" id="faqlist1">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#faq-content-1" data-i18n="section-faq-questions-#1">
Where can I communicate with you to get personalized information?
</button>
</h2>
<div id="faq-content-1" class="accordion-collapse collapse" data-bs-parent="#faqlist1">
<div class="accordion-body" id="block_container">
<div id="bloc" data-i18n="section-faq-answer-#1-1">Send us an email to</div> <a
href="mailto:[email protected]">[email protected]</a>
<div id="bloc" data-i18n="section-faq-answer-#1-2"> or contact us on</div>
<a href="https://api.whatsapp.com/send?phone=+18092151611" target="_blank"
class="whatsapp">Whatsapp</a>
<div id="bloc" data-i18n="section-faq-answer-#1-3">and</div> <a href="https://t.me/alphnology"
target="_blank" class="telegram">Telegram</a>
<div id="bloc" data-i18n="section-faq-answer-#1-4">to the</div>
<a href="tel:18092151611">+1 809 215 1611</a>.
</div>
</div>
</div>
<!-- <div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#faq-content-2" data-i18n="section-faq-questions-#2">
Where are you located?
</button>
</h2>
<div id="faq-content-2" class="accordion-collapse collapse" data-bs-parent="#faqlist1">
<div class="accordion-body" data-i18n="section-faq-answer-#2">
We are a technology company that is focused on the freedom technology provides, because of this we
work from everywhere, get in contact with us and we can coordinate a virtual meeting or a visit to
your facilities.
</div>
</div>
</div> -->
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#faq-content-3" data-i18n="section-faq-questions-#3">
If I wanted a preliminary evaluation for a new project, with preliminary data, is it possible to
get
it?
</button>
</h2>
<div id="faq-content-3" class="accordion-collapse collapse" data-bs-parent="#faqlist1">
<div class="accordion-body" data-i18n="section-faq-answer-#3">
Get in contact with us and we will be more than happy to evaluate and propose solutions for your
projects.
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-2"></div>
</div>
</div>
</section><!-- End F.A.Q Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2 data-i18n="contact">Contact</h2>
<p data-i18n="contact-us">Contact us</p>
</header>
<div class="row gy-4">
<div class="col-lg-6">
<div class="row gy-4">
<div class="col-md-6">
<div class="info-box">
<i class="bi bi-geo-alt"></i>
<h3 data-i18n="address">Address</h3>
<a href="https://www.google.com/maps/place/Santiago+De+Los+Caballeros" target="_blank">
<p>Santiago De Los Caballeros, Rep. Dom.</p>
</a>
</div>
</div>
<div class="col-md-6">
<div class="info-box">
<i class="bi bi-telephone"></i>
<h3 data-i18n="contact-us">Contact us</h3>
<a href="tel:18092151611">+1 809 215 1611</a><br>
</div>
</div>
<div class="col-md-6">
<div class="info-box">
<i class="bi bi-envelope"></i>
<h3 data-i18n="email">Email</h3>
<a href="mailto:[email protected]">[email protected]</a>
</div>
</div>
<div class="col-md-6">
<div class="info-box">
<i class="bi bi-clock"></i>
<h3 data-i18n="schedules">Schedules</h3>
<p data-i18n="schedules-day">Monday - Friday</p>
<p>9:00 AM - 6:00 PM AST</p>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<iframe name="hiddenFrame" class="hide"></iframe>
<form id="contact-form" role="form" class="email-form">
<div class="row gy-4">
<div class="col-md-12">
<input data-i18n="[placeholder]section-contact-form-name" type="text" id="name" name="name"
class="form-control" placeholder="Your Name" required>
</div>
<div class="col-md-12 ">
<input data-i18n="[placeholder]section-contact-form-phone" type="tel" class="form-control"
id="phone-number" name="phone-number" placeholder="Phone Number" required>
</div>
<div class="col-md-12">
<input data-i18n="[placeholder]section-contact-form-mailer" type="email" class="form-control"
id="email" name="email" placeholder="Email" required>
</div>
<div class="col-md-12">
<input data-i18n="[placeholder]section-contact-form-topic" type="text" class="form-control"
id="subject" name="subject" placeholder="Subject" required>
</div>
<div class="col-md-12">
<textarea data-i18n="[placeholder]section-contact-form-content" class="form-control" id="message"
name="message" rows="6" placeholder="Message" required></textarea>
</div>
<div class="col-md-12 text-center">
<div id="loading" class="loading" data-i18n="section-contact-form-loading">Loading</div>
<div id="error-message" class="error-message" data-i18n="section-contact-form-error-message">
The mail could not be sent</div>
<div id="sent-message" class="sent-message" data-i18n="section-contact-form-sent-message">
Your message has been sent. Thank you!</div>
<button type="submit" data-i18n="section-contact-form-submit">Send Message</button>
<button type="reset" data-i18n="section-contact-form-reset">Reset</button>
</div>
</div>
<script type="text/javascript">
document.forms['contact-form'].addEventListener('submit', (event) => {
event.preventDefault(); // Prevent form submission
var loading = document.getElementById('loading');
var errorMessage = document.getElementById('error-message');
var sentMessage = document.getElementById('sent-message');
// // Get form field values
var name = document.getElementById('name').value;
var phoneNumber = document.getElementById('phone-number').value;
var email = document.getElementById('email').value;
var subject = document.getElementById('subject').value;
var message = document.getElementById('message').value;
var content =
`<div class="email-container">
<h3>Feedback</h3>
<p>Dear Alphnology Team,</p>
<p>Here is some comments I would like to share:</p>
<ul class="detail-list">
<li><strong>Name:</strong> `+ name + `</li>
<li><strong>Phone number:</strong> `+ phoneNumber + `</li>
<li><strong>Email:</strong> `+ email + `</li>
</ul>
<p>` + message + `</p>
</div>`
var myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
var raw = JSON.stringify({
"subject": subject,
"content": content,
"source": "ALPHNOLOGY"
});
var requestOptions = {
method: 'POST',
headers: myHeaders,
body: raw,
redirect: 'follow'
};
fetch("https://faas-nyc1-2ef2e6cc.doserverless.co/api/v1/web/fn-9054e4b1-918f-409d-9681-dddcf57a2dff/functions/emails", requestOptions)
.then((resp) => {
loading.style.display = 'none';
setTimeout(function () {
sentMessage.style.display = 'none';
errorMessage.style.display = 'none';
}, 3000);
if (resp.status === 202) {
sentMessage.style.display = 'block';
} else {
errorMessage.style.display = 'block';
}
return resp.text(); // or resp.text() or whatever the server sends
}).then((body) => {
// TODO handle body
}).catch((e) => {
loading.style.display = 'none';
errorMessage.style.display = 'block';
setTimeout(function () {
errorMessage.style.display = 'none';
}, 3000);
// TODO handle error
});
});
</script>
</form>
</div>
</div>
</div>
</section><!-- End Contact Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer" class="footer">
<div class="footer-top">
<div class="container">
<div class="row gy-4">
<div class="col-lg-4 col-md-12 footer-info">
<a href="index.html" class="logo d-flex align-items-center">
<img src="assets/img/logo.png" alt="">
</a>
<div class="social-links mt-3">
<a href="https://api.whatsapp.com/send?phone=+18092151611" target="_blank" class="whatsapp"><i
class="bi bi-whatsapp"></i></a>
<a href="https://t.me/alphnology" target="_blank" class="telegram"><i class="bi bi-telegram"></i></a>
<a href="https://www.instagram.com/alphnology/" target="_blank" class="instagram"><i
class="bi bi-instagram"></i></a>
<a href="https://web.facebook.com/Alphnology/" target="_blank" class="facebook"><i
class="bi bi-facebook"></i></a>
<a href="https://twitter.com/alphnology" target="_blank" class="twitter"><i
class="bi bi-twitter"></i></a>
</div>
</div>
<div class="col-lg-2 col-6 footer-links">
<!-- <h4>Productos y servicios</h4>
<ul>
<li><i class="bi bi-chevron-right"></i> <a href="#services">Gestión de proyectos</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#services">Migración de datos (ETL)</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#services">Consultoría</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#portfolio">Gestión de colas</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#portfolio">Laboratorio patologico</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#portfolio">Agrimensura</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#portfolio">Chatbot</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#portfolio">B2B</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#portfolio">Contabilidad general</a></li>
</ul> -->
</div>
<div class="col-lg-3 col-6 footer-links">
<h4 data-i18n="section-footer-header-#2">Helpful links</h4>
<ul>
<li><i class="bi bi-chevron-right"></i> <a href="#hero" data-i18n="header-navbar-home">Home</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#about" data-i18n="header-navbar-about">About us</a>
</li>
<li><i class="bi bi-chevron-right"></i> <a href="#services"
data-i18n="header-navbar-services">Services</a>
</li>
<li><i class="bi bi-chevron-right"></i> <a href="#team" data-i18n="header-navbar-team">Team</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#contact" data-i18n="header-navbar-contact">Contact</a>
</li>
</ul>
</div>
<div class="col-lg-3 col-md-12 footer-contact text-center text-md-start">
<h4 data-i18n="contact-us">Contact us</h4>
<p>
<a href="https://www.google.com/maps/place/Santiago+De+Los+Caballeros" target="_blank">
<p>Santiago De Los Caballeros, Rep. Dom.</p>
</a>
<strong data-i18n="phone">Phone</strong>: <a href="tel:1809 215 1611">+1 809 215 1611</a><br>
<strong data-i18n="email">Email</strong>: <a href="mailto:[email protected]">[email protected]</a><br>
</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="copyright">
© Copyright <strong><span>FlexStart</span></strong>. All Rights Reserved
</div>
<div class="credits">
<!-- All the links in the footer should remain intact. -->
<!-- You can delete the links only if you purchased the pro version. -->
<!-- Licensing information: https://bootstrapmade.com/license/ -->
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/flexstart-bootstrap-startup-template/ -->
Designed by <a href="https://bootstrapmade.com/">BootstrapMade</a>
</div>
</div>
</footer><!-- End Footer -->
<!-- <a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i
class="bi bi-arrow-up-short"></i></a> -->
<!-- Vendor JS Files -->
<script src="assets/vendor/purecounter/purecounter.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<!-- jQuery i18n -->
<script src="assets/vendor/jquery/common/jquery.js"></script>
<script src="assets/vendor/jquery/jquery_i18n/CLDRPluralRuleParser.js"></script>
<script src="assets/vendor/jquery/jquery_i18n/jquery.i18n.js"></script>
<script src="assets/vendor/jquery/jquery_i18n/jquery.i18n.messagestore.js"></script>
<script src="assets/vendor/jquery/jquery_i18n/jquery.i18n.fallbacks.js"></script>
<script src="assets/vendor/jquery/jquery_i18n/jquery.i18n.language.js"></script>
<script src="assets/vendor/jquery/jquery_i18n/jquery.i18n.parser.js"></script>
<script src="assets/vendor/jquery/jquery_i18n/jquery.i18n.emitter.js"></script>
<script src="assets/vendor/jquery/jquery_i18n/jquery.i18n.emitter.bidi.js"></script>
<script src="assets/vendor/jquery/jquery_i18n/i18n_en.js"></script>
<script src="assets/vendor/jquery/jquery_i18n/i18n_es.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
<script>
(function(d,t) {
var BASE_URL="https://octopus.alphnology.com";
var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=BASE_URL+"/packs/js/sdk.js";
g.defer = true;
g.async = true;
s.parentNode.insertBefore(g,s);
g.onload=function(){
window.chatwootSDK.run({
websiteToken: '7rCXdsoZEXkJNvdpMtQRXcPE',
baseUrl: BASE_URL
})
}
})(document,"script");
</script>
</body>
</html>