-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1300 lines (1261 loc) · 49.9 KB
/
index.html
File metadata and controls
1300 lines (1261 loc) · 49.9 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
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
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!-- =========
Template Name: Play
Author: UIdeck
Author URI: https://uideck.com/
Support: https://uideck.com/support/
Version: 1.1
========== -->
<!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>Fibre Optic Communication Systems and Artificial Intelligence </title>
<!-- Primary Meta Tags -->
<meta name="title" content="Play - Free Open Source HTML Bootstrap Template by UIdeck">
<meta name="description" content="Fibre Optic Communication Systems and Artificial Intelligence">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://uideck.com/play/">
<meta property="og:title" content="Fibre Optic Communication Systems and Artificial Intelligence">
<meta property="og:description" content="Fibre Optic Communication Systems and Artificial Intelligence">
<meta property="og:image" content="Fibre Optic Communication Systems and Artificial Intelligence">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://uideck.com/play/">
<meta property="twitter:title" content="Fibre Optic Communication Systems and Artificial Intelligence">
<meta property="twitter:description" content="Fibre Optic Communication Systems and Artificial Intelligence">
<meta property="twitter:image" content="https://uideck.com/wp-content/uploads/2021/09/play-meta-bs.jpg">
<!--====== Favicon Icon ======-->
<link
rel="shortcut icon"
href="assets/images/favicon.png"
type="image/svg"
/>
<!-- ===== All CSS files ===== -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/css/animate.css" />
<link rel="stylesheet" href="assets/css/lineicons.css" />
<link rel="stylesheet" href="assets/css/ud-styles.css" />
</head>
<body>
<!-- ====== Header Start ====== -->
<header class="ud-header">
<div class="container">
<div class="row">
<div class="col-lg-12">
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand" href="index.html">
<img src="assets/images/logo/logo.png" alt="Logo" />
</a>
<button class="navbar-toggler">
<span class="toggler-icon"> </span>
<span class="toggler-icon"> </span>
<span class="toggler-icon"> </span>
</button>
<div class="navbar-collapse">
<ul id="nav" class="navbar-nav mx-auto">
<li class="nav-item">
<a class="ud-menu-scroll" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="ud-menu-scroll" href="#about">About</a>
</li>
<!-- <li class="nav-item">
<a class="ud-menu-scroll" href="#pricing">Pricing</a>
</li> -->
<!-- <li class="nav-item">
<a class="ud-menu-scroll" href="#team">Team</a>
</li> -->
<li class="nav-item">
<a class="ud-menu-scroll" href="#contact">Contact</a>
</li>
<!-- <li class="nav-item nav-item-has-children">
<a href="javascript:void(0)"> Pages </a>
<ul class="ud-submenu">
<li class="ud-submenu-item">
<a href="about.html" class="ud-submenu-link">
About Page
</a>
</li> -->
<!-- <li class="ud-submenu-item">
<a href="pricing.html" class="ud-submenu-link">
Pricing Page
</a>
</li> -->
<!-- <li class="ud-submenu-item">
<a href="contact.html" class="ud-submenu-link">
Contact Page
</a>
</li> -->
<!-- <li class="ud-submenu-item">
<a href="blog.html" class="ud-submenu-link">
Blog Grid Page
</a>
</li>
<li class="ud-submenu-item">
<a href="blog-details.html" class="ud-submenu-link">
Blog Details Page
</a>
</li>
<li class="ud-submenu-item">
<a href="login.html" class="ud-submenu-link">
Sign In Page
</a>
</li>
<li class="ud-submenu-item">
<a href="404.html" class="ud-submenu-link">404 Page</a>
</li> -->
<!-- </ul>
</li>
</ul>
</div> -->
<!-- <div class="navbar-btn d-none d-sm-inline-block">
<a href="login.html" class="ud-main-btn ud-login-btn">
Sign In
</a>
<a class="ud-main-btn ud-white-btn" href="javascript:void(0)">
Sign Up
</a>
</div> -->
</nav>
</div>
</div>
</div>
</header>
<!-- ====== Header End ====== -->
<!-- ====== Hero Start ====== -->
<section class="ud-hero" id="home">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="ud-hero-content wow fadeInUp" data-wow-delay=".2s">
<h1 class="ud-hero-title">
Fibre Optic Communication System and Artificial Intelligence
</h1>
<p class="ud-hero-desc">
Multidisciplinary Technical Solutions for Optical Network Design and Intelligence
In Collaboration with British Telecommunications and University of Cambridge
</p>
<ul class="ud-hero-buttons">
<li>
<!-- <a href="https://links.uideck.com/play-bootstrap-download" rel="nofollow noopener" target="_blank" class="ud-main-btn ud-white-btn">
Download
</a> -->
<a href="https://github.com/FOCS-AI" rel="nofollow noopener" target="_blank" class="ud-main-btn ud-white-btn">
Github
</a>
</li>
<li>
<a href="https://github.com/FOCS-AI/optrix" rel="nofollow noopener" target="_blank" class="ud-main-btn ud-white-btn">
Datasets
</a>
</li>
<li>
<a href="https://github.com/FOCS-AI" rel="nofollow noopener" target="_blank" class="ud-main-btn ud-white-btn">
Reports
</a>
</li>
<li>
<a href="https://github.com/FOCS-AI" rel="nofollow noopener" target="_blank" class="ud-main-btn ud-white-btn">
Dashboard
</a>
</li>
<li>
<a href="https://github.com/uideck/play-bootstrap" rel="nofollow noopener" target="_blank" class="ud-main-btn ud-link-btn">
Learn More <i class="lni lni-arrow-right"></i>
</a>
</li>
</ul>
</div>
<!-- <div
class="ud-hero-brands-wrapper wow fadeInUp"
data-wow-delay=".3s"
>
<img src="assets/images/hero/brand.svg" alt="brand" />
</div> -->
<div class="ud-hero-image wow fadeInUp" data-wow-delay=".25s">
<!-- <img src="assets/images/hero/hero-image.svg" alt="hero-image" /> -->
<!-- <img
src="assets/images/hero/dotted-shape.svg"
alt="shape"
class="shape shape-1"
/>
<img
src="assets/images/hero/dotted-shape.svg"
alt="shape"
class="shape shape-2"
/> -->
</div>
</div>
</div>
</div>
</section>
<!-- ====== Hero End ====== -->
<!-- ====== Features Start ====== -->
<section id="features" class="ud-features">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="ud-section-title">
<span>Features</span>
<h2>Main Features </h2>
<p>
We are pioneering the future of communication systems and artificial intelligence.
Our mission is to bridge the gap between these two dynamic fields, harnessing the power of technology to create innovative solutions that drive progress and shape the digital landscape.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-xl-3 col-lg-3 col-sm-6">
<div class="ud-single-feature wow fadeInUp" data-wow-delay=".1s">
<div class="ud-feature-icon">
<i class="lni lni-gift"></i>
</div>
<div class="ud-feature-content">
<h3 class="ud-feature-title">Free and Open-Source</h3>
<p class="ud-feature-desc">
Our research datasets, code and publications are openly accessible and our results are reproducible.
</p>
<a href="javascript:void(0)" class="ud-feature-link">
Learn More
</a>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-sm-6">
<div class="ud-single-feature wow fadeInUp" data-wow-delay=".15s">
<div class="ud-feature-icon">
<i class="lni lni-move"></i>
</div>
<div class="ud-feature-content">
<h3 class="ud-feature-title">Intelligent Network Design</h3>
<p class="ud-feature-desc">
We build algorithms that model the core optical network and backbone of the communications systems.
</p>
<a href="javascript:void(0)" class="ud-feature-link">
Learn More
</a>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-sm-6">
<div class="ud-single-feature wow fadeInUp" data-wow-delay=".2s">
<div class="ud-feature-icon">
<i class="lni lni-layout"></i>
</div>
<div class="ud-feature-content">
<h3 class="ud-feature-title">High-quality Design</h3>
<p class="ud-feature-desc">
We use graph based and generative artificial intelligence to design optical network topologies.
</p>
<a href="javascript:void(0)" class="ud-feature-link">
Learn More
</a>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-sm-6">
<div class="ud-single-feature wow fadeInUp" data-wow-delay=".25s">
<div class="ud-feature-icon">
<i class="lni lni-layers"></i>
</div>
<div class="ud-feature-content">
<h3 class="ud-feature-title">All Essential Elements</h3>
<p class="ud-feature-desc">
We provide all the generative AI models that can be deployed in your network.
</p>
<a href="javascript:void(0)" class="ud-feature-link">
Learn More
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ====== Features End ====== -->
<!-- ====== About Start ====== -->
<section id="about" class="ud-about">
<div class="container">
<div class="ud-about-wrapper wow fadeInUp" data-wow-delay=".2s">
<div class="ud-about-content-wrapper">
<div class="ud-about-content">
<span class="tag">About Us</span>
<h2> Design, Build, Test and Monitor Optical Networks</h2>
<p>
We represent each network topologies a graph and use graph based traditional and artificial intelligence methods for link prediction and topology generation.
We build open source and accessible solutions to optical core network design.
</p>
<p>
We provide services that help deploy pre-trained models into your organization.
</p>
<a href="javascript:void(0)" class="ud-main-btn">Learn More</a>
</div>
</div>
<div class="ud-about-image">
<img src="assets/images/about/about-image.svg" alt="about-image" />
</div>
</div>
</div>
</section>
<!-- ====== About End ====== -->
<!-- ====== Pricing Start ====== -->
<!-- <section id="pricing" class="ud-pricing">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="ud-section-title mx-auto text-center">
<span>Pricing</span>
<h2>Our Pricing Plans</h2>
<p>
There are many variations of passages of Lorem Ipsum available
but the majority have suffered alteration in some form.
</p>
</div>
</div>
</div>
<div class="row g-0 align-items-center justify-content-center">
<div class="col-lg-4 col-md-6 col-sm-10">
<div
class="ud-single-pricing first-item wow fadeInUp"
data-wow-delay=".15s"
>
<div class="ud-pricing-header">
<h3>STARTING FROM</h3>
<h4>$ 19.99/mo</h4>
</div>
<div class="ud-pricing-body">
<ul>
<li>5 User</li>
<li>All UI components</li>
<li>Lifetime access</li>
<li>Free updates</li>
<li>Use on 1 (one) project</li>
<li>4 Months support</li>
</ul>
</div>
<div class="ud-pricing-footer">
<a href="javascript:void(0)" class="ud-main-btn ud-border-btn">
Purchase Now
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-10">
<div
class="ud-single-pricing active wow fadeInUp"
data-wow-delay=".1s"
>
<span class="ud-popular-tag">POPULAR</span>
<div class="ud-pricing-header">
<h3>STARTING FROM</h3>
<h4>$ 30.99/mo</h4>
</div>
<div class="ud-pricing-body">
<ul>
<li>5 User</li>
<li>All UI components</li>
<li>Lifetime access</li>
<li>Free updates</li>
<li>Use on 1 (one) project</li>
<li>4 Months support</li>
</ul>
</div>
<div class="ud-pricing-footer">
<a href="javascript:void(0)" class="ud-main-btn ud-white-btn">
Purchase Now
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-10">
<div
class="ud-single-pricing last-item wow fadeInUp"
data-wow-delay=".15s"
>
<div class="ud-pricing-header">
<h3>STARTING FROM</h3>
<h4>$ 70.99/mo</h4>
</div>
<div class="ud-pricing-body">
<ul>
<li>5 User</li>
<li>All UI components</li>
<li>Lifetime access</li>
<li>Free updates</li>
<li>Use on 1 (one) project</li>
<li>4 Months support</li>
</ul>
</div>
<div class="ud-pricing-footer">
<a href="javascript:void(0)" class="ud-main-btn ud-border-btn">
Purchase Now
</a>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- ====== Pricing End ====== -->
<!-- ====== FAQ Start ====== -->
<section id="faq" class="ud-faq">
<div class="shape">
<img src="assets/images/faq/shape.svg" alt="shape" />
</div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="ud-section-title text-center mx-auto">
<span>FAQ</span>
<h2>Any Questions? Answered</h2>
<p>
Let's address some of the most common questions you might have about our organization and the exciting fields of Fibre Optic Communication Systems and Artificial Intelligence.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="ud-single-faq wow fadeInUp" data-wow-delay=".1s">
<div class="accordion">
<button
class="ud-faq-btn collapsed"
data-bs-toggle="collapse"
data-bs-target="#collapseOne"
>
<span class="icon flex-shrink-0">
<i class="lni lni-chevron-down"></i>
</span>
<span>What is FOCS-AI?</span>
</button>
<div id="collapseOne" class="accordion-collapse collapse">
<div class="ud-faq-body">
FOCS-AI stands for Fibre Optic Communication Systems and Artificial Intelligence.
We are a dynamic organization working at the intersection of these two cutting-edge fields, exploring their synergies and pushing the boundaries of technology.
Our mission is to bridge the gap between communication systems and artificial intelligence, driving innovation, and advancing the fields to benefit society.
We strive to accelerate scientific and technological progress through research, collaboration and knowledge sharing.
</div>
</div>
</div>
</div>
<div class="ud-single-faq wow fadeInUp" data-wow-delay=".15s">
<div class="accordion">
<button
class="ud-faq-btn collapsed"
data-bs-toggle="collapse"
data-bs-target="#collapseTwo"
>
<span class="icon flex-shrink-0">
<i class="lni lni-chevron-down"></i>
</span>
<span>How to download dataset?</span>
</button>
<div id="collapseTwo" class="accordion-collapse collapse">
<div class="ud-faq-body">
To download a dataset from FOCS-AI, simply visit our website, navigate to the "Datasets" section, and select the dataset of your interest.
Click on the provided download link, choose a download location on your computer, and patiently wait for the download to complete.
After verifying the download's integrity, you can then use the dataset for your research, analysis, or other project needs.
For more detailed information and specific terms, please refer to the dataset's page on our website.
Please remember to cite the dataset if you use for research projects.
</div>
</div>
</div>
</div>
<div class="ud-single-faq wow fadeInUp" data-wow-delay=".2s">
<div class="accordion">
<button
class="ud-faq-btn collapsed"
data-bs-toggle="collapse"
data-bs-target="#collapseThree"
>
<span class="icon flex-shrink-0">
<i class="lni lni-chevron-down"></i>
</span>
<span>How can I use the topology visualisation tool?</span>
</button>
<div id="collapseThree" class="accordion-collapse collapse">
<div class="ud-faq-body">
Using our Topology Visualization Dashboard is straightforward.
Start by accessing the dashboard on our website, and you'll find a user-friendly interface.
Select the core optical network topology you're interested in, and the dashboard will display it on a map with node locations and links.
Click on nodes or links to access more details, and you can easily explore the core network topology.
Initial network analysis for the selected topology is provided as well, offering valuable insights.
For a more comprehensive guide and specific instructions, visit the dedicated section on our website, which will provide additional details and assistance.
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="ud-single-faq wow fadeInUp" data-wow-delay=".1s">
<div class="accordion">
<button
class="ud-faq-btn collapsed"
data-bs-toggle="collapse"
data-bs-target="#collapseFour"
>
<span class="icon flex-shrink-0">
<i class="lni lni-chevron-down"></i>
</span>
<span> How can I collaborate with FOCS-AI?</span>
</button>
<div id="collapseFour" class="accordion-collapse collapse">
<div class="ud-faq-body">
We welcome collaboration from passionate individuals and organizations. Feel free to reach out to us with your project ideas or interests. We believe in open communication and cooperation to achieve common goals.
</div>
</div>
</div>
</div>
<div class="ud-single-faq wow fadeInUp" data-wow-delay=".15s">
<div class="accordion">
<button
class="ud-faq-btn collapsed"
data-bs-toggle="collapse"
data-bs-target="#collapseFive"
>
<span class="icon flex-shrink-0">
<i class="lni lni-chevron-down"></i>
</span>
<span>Do you have plan releasing Professional servies at FOCS-AI?</span>
</button>
<div id="collapseFive" class="accordion-collapse collapse">
<div class="ud-faq-body">
Yes, at FOCS-AI, we have plans to introduce commercial plans for utilizing advanced models in network design and monitoring.
We are dedicated to providing cutting-edge solutions to meet your professional needs.
If you are interested in learning more or staying updated on our upcoming professional services, please don't hesitate to contact us.
We're excited about the opportunities ahead and look forward to serving your networking and AI requirements.
</div>
</div>
</div>
</div>
<div class="ud-single-faq wow fadeInUp" data-wow-delay=".2s">
<div class="accordion">
<button
class="ud-faq-btn collapsed"
data-bs-toggle="collapse"
data-bs-target="#collapseSix"
>
<span class="icon flex-shrink-0">
<i class="lni lni-chevron-down"></i>
</span>
<span>Can I use FOCS-AI's code or datasets for my projects?</span>
</button>
<div id="collapseSix" class="accordion-collapse collapse">
<div class="ud-faq-body">
Yes, we encourage the use of our work to promote technological advancement.
However, we kindly request that you cite the relevant GitHub repositories and associated research articles or reports when using or extending our work to maintain transparency and give credit where it's due.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ====== FAQ End ====== -->
<!-- ====== Testimonials Start ====== -->
<!-- <section id="testimonials" class="ud-testimonials">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="ud-section-title mx-auto text-center">
<span>Testimonials</span>
<h2>What our Customers Says</h2>
<p>
There are many variations of passages of Lorem Ipsum available
but the majority have suffered alteration in some form.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<div
class="ud-single-testimonial wow fadeInUp"
data-wow-delay=".1s"
>
<div class="ud-testimonial-ratings">
<i class="lni lni-star-filled"></i>
<i class="lni lni-star-filled"></i>
<i class="lni lni-star-filled"></i>
<i class="lni lni-star-filled"></i>
<i class="lni lni-star-filled"></i>
</div>
<div class="ud-testimonial-content">
<p>
“Our members are so impressed. It's intuitive. It's clean.
It's distraction free. If you're building a community.
</p>
</div>
<div class="ud-testimonial-info">
<div class="ud-testimonial-image">
<img
src="assets/images/testimonials/author-01.png"
alt="author"
/>
</div>
<div class="ud-testimonial-meta">
<h4>Sabo Masties</h4>
<p>Founder @UIdeck</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div
class="ud-single-testimonial wow fadeInUp"
data-wow-delay=".15s"
>
<div class="ud-testimonial-ratings">
<i class="lni lni-star-filled"></i>
<i class="lni lni-star-filled"></i>
<i class="lni lni-star-filled"></i>
<i class="lni lni-star-filled"></i>
<i class="lni lni-star-filled"></i>
</div>
<div class="ud-testimonial-content">
<p>
“Our members are so impressed. It's intuitive. It's clean.
It's distraction free. If you're building a community.
</p>
</div>
<div class="ud-testimonial-info">
<div class="ud-testimonial-image">
<img
src="assets/images/testimonials/author-02.png"
alt="author"
/>
</div>
<div class="ud-testimonial-meta">
<h4>Margin Gesmu</h4>
<p>Founder @Lineicons</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div
class="ud-single-testimonial wow fadeInUp"
data-wow-delay=".2s"
>
<div class="ud-testimonial-ratings">
<i class="lni lni-star-filled"></i>
<i class="lni lni-star-filled"></i>
<i class="lni lni-star-filled"></i>
<i class="lni lni-star-filled"></i>
<i class="lni lni-star-filled"></i>
</div>
<div class="ud-testimonial-content">
<p>
“Our members are so impressed. It's intuitive. It's clean.
It's distraction free. If you're building a community.
</p>
</div>
<div class="ud-testimonial-info">
<div class="ud-testimonial-image">
<img
src="assets/images/testimonials/author-03.png"
alt="author"
/>
</div>
<div class="ud-testimonial-meta">
<h4>William Smith</h4>
<p>Founder @GrayGrids</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="ud-brands wow fadeInUp" data-wow-delay=".2s">
<div class="ud-title">
<h6>Trusted and Used by</h6>
</div>
<div class="ud-brands-logo">
<div class="ud-single-logo">
<img src="assets/images/brands/ayroui.svg" alt="ayroui" />
</div>
<div class="ud-single-logo">
<img src="assets/images/brands/uideck.svg" alt="uideck" />
</div>
<div class="ud-single-logo">
<img
src="assets/images/brands/graygrids.svg"
alt="graygrids"
/>
</div>
<div class="ud-single-logo">
<img
src="assets/images/brands/lineicons.svg"
alt="lineicons"
/>
</div>
<div class="ud-single-logo">
<img
src="assets/images/brands/ecommerce-html.svg"
alt="ecommerce-html"
/>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- ====== Testimonials End ====== -->
<!-- ====== Team Start ====== -->
<!-- <section id="team" class="ud-team">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="ud-section-title mx-auto text-center">
<span>Our Team</span>
<h2>Meet The Team</h2>
<p>
There are many variations of passages of Lorem Ipsum available
but the majority have suffered alteration in some form.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-xl-3 col-lg-3 col-sm-6">
<div class="ud-single-team wow fadeInUp" data-wow-delay=".1s">
<div class="ud-team-image-wrapper">
<div class="ud-team-image">
<img src="assets/images/team/team-01.png" alt="team" />
</div>
<img
src="assets/images/team/dotted-shape.svg"
alt="shape"
class="shape shape-1"
/>
<img
src="assets/images/team/shape-2.svg"
alt="shape"
class="shape shape-2"
/>
</div>
<div class="ud-team-info">
<h5>Adveen Desuza</h5>
<h6>UI Designer</h6>
</div>
<ul class="ud-team-socials">
<li>
<a href="https://twitter.com/MusharofChy">
<i class="lni lni-facebook-filled"></i>
</a>
</li>
<li>
<a href="https://twitter.com/MusharofChy">
<i class="lni lni-twitter-filled"></i>
</a>
</li>
<li>
<a href="https://twitter.com/MusharofChy">
<i class="lni lni-instagram-filled"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-sm-6">
<div class="ud-single-team wow fadeInUp" data-wow-delay=".15s">
<div class="ud-team-image-wrapper">
<div class="ud-team-image">
<img src="assets/images/team/team-02.png" alt="team" />
</div>
<img
src="assets/images/team/dotted-shape.svg"
alt="shape"
class="shape shape-1"
/>
<img
src="assets/images/team/shape-2.svg"
alt="shape"
class="shape shape-2"
/>
</div>
<div class="ud-team-info">
<h5>Jezmin uniya</h5>
<h6>Product Designer</h6>
</div>
<ul class="ud-team-socials">
<li>
<a href="https://twitter.com/MusharofChy">
<i class="lni lni-facebook-filled"></i>
</a>
</li>
<li>
<a href="https://twitter.com/MusharofChy">
<i class="lni lni-twitter-filled"></i>
</a>
</li>
<li>
<a href="https://twitter.com/MusharofChy">
<i class="lni lni-instagram-filled"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-sm-6">
<div class="ud-single-team wow fadeInUp" data-wow-delay=".2s">
<div class="ud-team-image-wrapper">
<div class="ud-team-image">
<img src="assets/images/team/team-03.png" alt="team" />
</div>
<img
src="assets/images/team/dotted-shape.svg"
alt="shape"
class="shape shape-1"
/>
<img
src="assets/images/team/shape-2.svg"
alt="shape"
class="shape shape-2"
/>
</div>
<div class="ud-team-info">
<h5>Andrieo Gloree</h5>
<h6>App Developer</h6>
</div>
<ul class="ud-team-socials">
<li>
<a href="https://twitter.com/MusharofChy">
<i class="lni lni-facebook-filled"></i>
</a>
</li>
<li>
<a href="https://twitter.com/MusharofChy">
<i class="lni lni-twitter-filled"></i>
</a>
</li>
<li>
<a href="https://twitter.com/MusharofChy">
<i class="lni lni-instagram-filled"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-sm-6">
<div class="ud-single-team wow fadeInUp" data-wow-delay=".25s">
<div class="ud-team-image-wrapper">
<div class="ud-team-image">
<img src="assets/images/team/team-04.png" alt="team" />
</div>
<img
src="assets/images/team/dotted-shape.svg"
alt="shape"
class="shape shape-1"
/>
<img
src="assets/images/team/shape-2.svg"
alt="shape"
class="shape shape-2"
/>
</div>
<div class="ud-team-info">
<h5>Jackie Sanders</h5>
<h6>Content Writer</h6>
</div>
<ul class="ud-team-socials">
<li>
<a href="https://twitter.com/MusharofChy">
<i class="lni lni-facebook-filled"></i>
</a>
</li>
<li>
<a href="https://twitter.com/MusharofChy">
<i class="lni lni-twitter-filled"></i>
</a>
</li>
<li>
<a href="https://twitter.com/MusharofChy">
<i class="lni lni-instagram-filled"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section> -->
<!-- ====== Team End ====== -->
<!-- ====== Contact Start ====== -->
<section id="contact" class="ud-contact">
<div class="container">
<div class="row align-items-center">
<div class="col-xl-8 col-lg-7">
<div class="ud-contact-content-wrapper">
<div class="ud-contact-title">
<span>CONTACT US</span>
<h2>
Let’s talk <br />
Love to hear from you!
</h2>
</div>
<div class="ud-contact-info-wrapper">
<div class="ud-single-info">
<div class="ud-info-icon">
<i class="lni lni-map-marker"></i>
</div>
<div class="ud-info-meta">
<h5>Our Location</h5>
<p>Department of Engineering, University of Cambridge, United Kingdom</p>
</div>
</div>
<div class="ud-single-info">
<div class="ud-info-icon">
<i class="lni lni-envelope"></i>
</div>
<div class="ud-info-meta">
<h5>How Can We Help?</h5>
<p>[email protected]</p>
<p>[email protected]</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-4 col-lg-5">
<div
class="ud-contact-form-wrapper wow fadeInUp"
data-wow-delay=".2s"
>
<h3 class="ud-contact-form-title">Send us a Message</h3>
<form class="ud-contact-form">
<div class="ud-form-group">
<label for="fullName">Full Name*</label>
<input
type="text"
name="fullName"
placeholder="Adam Gelius"
/>
</div>
<div class="ud-form-group">
<label for="email">Email*</label>
<input
type="email"
name="email"
placeholder="[email protected]"
/>
</div>
<div class="ud-form-group">
<label for="phone">Phone*</label>
<input
type="text"
name="phone"
placeholder="+885 1254 5211 552"
/>
</div>
<div class="ud-form-group">
<label for="message">Message*</label>
<textarea
name="message"
rows="1"
placeholder="type your message here"
></textarea>
</div>
<div class="ud-form-group mb-0">
<button type="submit" class="ud-main-btn">
Send Message
</button>
</div>
</form>