-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathc1.html
More file actions
135 lines (125 loc) · 4.53 KB
/
c1.html
File metadata and controls
135 lines (125 loc) · 4.53 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
{{ define "header-bottom" }}
<section></section>
{{ end }}
{{ define "main" }}
<!-- about hero area start -->
<section class="hero-area-2 bg-color-available">
<div class="container">
<div class="flex justify-center">
<div class="w-full md:w-1/2 d-table">
<div class="hero-area-inner-2 text-center d-table-cell">
<h1>About Us</h1>
<p>{{ .Site.Data.products.appscode.summary }}</p>
</div>
</div>
</div>
</div>
</section>
<!-- about hero area end -->
<!-- about start -->
<section class="about-text-area section-padding">
<div class="container">
<div class="flex justify-center">
<div class="w-full md:w-2/3">
<div class="about-text-inner text-center">
<p>
AppsCode Inc. was founded by <a href="https://www.linkedin.com/in/tamalsaha" class="ac-primary-color">Tamal Saha</a> in 2016. Before founding AppsCode, Tamal was a software engineer at Google and Amazon. He has a Master of Computer Science degree from University of Virginia. He completed his Bachelor’s degree in CSE from BUET, Dhaka, Bangladesh. He comes from Bangladesh.
</p>
<p>
AppsCode has offices in both USA and Bangladesh. This allows us to provide 24 x 7 technical operational support to our users and customers. For any inquiries, please contact us <a href="/contact/" class="ac-primary-color">here</a>.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- about end -->
<!-- message start -->
<section class="ceo-message section-padding pt-0">
<div class="container">
<div class="flex flex-col md:flex-row gap-8">
<div class="w-full md:w-5/12">
<div class="ceo-message-wrapper">
<h2>Message from CEO</h2>
<p>
The inventor of web browser, Marc Andreessen, once said that software is eating the world. Software developers are the craftsmen who will shape the future of human civilization. The vision of AppsCode is to make the best tools for software development available to anybody at an affordable price. We believe that human knowledge belongs to the world. So, we are building an integrated development platform that democratizes modern software development tools.
</p>
<div class="signature-image">
<img src="/assets/images/appscode/signature.png" alt="" />
<p>Tamal Saha</p>
</div>
</div>
</div>
<div class="w-full md:w-1/2 md:ml-8">
<div class="ceo-image">
<div class="dots-style"></div>
<img src="/assets/images/appscode/appscode.png" alt="" />
</div>
</div>
</div>
</div>
</section>
<!-- message end -->
<!-- happy-customer start -->
<section class="our-customer-area section-padding">
<div class="container">
<div class="flex justify-center">
<div class="w-full md:w-1/2 text-center">
<div class="section-title text-center">
<h2>We Have Happy Customers <br />Around the World</h2>
</div>
</div>
</div>
<div class="flex justify-center">
<div class="w-full lg:w-10/12 text-center">
<div class="social-prove-brand-area">
<div class="brand-image-wrapper owl-carousel" id="brand-image-wrapper">
{{ range $customer := $.Site.Data.customers }}
{{ if $customer.show }}
<div class="single-brand"><img src="{{ $customer.logo }}" alt="{{ $customer.name }}"></div>
{{ end }}
{{ end }}
</div>
</div>
</div>
</div>
</div>
</section>
<!-- happy-customer end -->
<!-- cta-area start -->
<!-- <section class="ac-cta-area section-padding">
<div class="container">
<div class="cta-padding">
<div class="columns">
<div class="column is-6">
<div class="cta-text">
<h2>Ready to Get Started?</h2>
<p>Create a Free Account and refer your friend</p>
</div>
</div>
<div class="column is-6 text-right is-mobile">
<div class="cta-button d-table">
<div class="cta-button-inner d-table-cell">
<a
href="/products/voyager/10.0.0/setup/"
class="button ac-button ac-primary"
>Try Now for FREE</a
>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
--><!-- cta-area end -->
{{ end }}
{{ define "testimonial" }}
<section></section>
{{ end }}
{{ define "customer-logos" }}
<section></section>
{{ end }}
{{ define "cta-install" }}
<section></section>
{{ end }}