-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpartner.html
More file actions
162 lines (150 loc) · 6.58 KB
/
partner.html
File metadata and controls
162 lines (150 loc) · 6.58 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
{{ define "header-bottom" }}
<section></section>
{{ end }}
{{ define "main" }}
<section class="partner-hero-area bg-primay-light section-padding">
<span class="decorative-shape">
<img class="left-el" src="/assets/images/shape/decorative-el.svg" alt="decorative-el">
<img class="right-el" src="/assets/images/shape/decorative-el.svg" alt="decorative-el">
</span>
<div class="container">
<div class="flex justify-center">
<div class="w-full lg:w-2/3">
<div class="section-title text-center">
<h1>AppsCode Partners</h1>
<p>Empower your growth with AppsCode! We unite advanced database technologies and service providers to deliver transformative solutions worldwide.</p>
</div>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div>
</div>
<div class="content">
<h4>Access to Exclusive Resources</h4>
<p>Gain access to our marketing materials, resources, and dedicated support to help you succeed</p>
</div>
</div>
</div>
<div>
</div>
<div class="content">
<h4>Expand Your Reach</h4>
<p>Partnering with us means expanding your reach and tapping into new markets</p>
</div>
</div>
</div>
<div>
</div>
<div class="content">
<h4>Earn Competitive Commissions</h4>
<p>Join our partner program and earn generous commissions for every successful referral</p>
</div>
</div>
</div>
<div class="buttons is-centered">
<a href="#contact" class="button ac-button is-primary">
<span>Become a Partner</span>
<span><img src="/assets/images/products/appscode/icons/global/handshake.svg" alt="handshake"></span>
</a>
<a href="https://x.appscode.com/_/deal_registration/" target="_blank" class="button ac-button is-primary">
<span>Register Deal</span>
</a>
</div>
</div>
</div>
</section>
<section class="showcase-partner section-padding">
<div class="container">
<div class="flex justify-center">
<div class="w-full lg:w-2/3">
<div class="section-title text-center mb-0">
<h2>Cloud Partners</h2>
<p class="mb-0">An industry-leading group of cloud providers integrate with AppsCode's powerful Kubernetes Solutions to provide enhanced value to their customers.</p>
</div>
<div class="social-prove-brand-area">
<div class="brand-image-wrapper">
{{ range $showcase := $.Site.Data.partners.showcase_partners }}
{{ if $showcase.show }}
<div class="single-brand"><img src="{{ $showcase.logo }}" alt="{{ $showcase.name }}"></div>
{{ end }}
{{ end }}
</div>
</div>
</div>
</div>
</div>
</section>
<section class="technology-partner bg-primay-light section-padding">
<span class="decorative-shape">
<img class="left-el" src="/assets/images/shape/decorative-el.svg" alt="decorative-el">
<img class="right-el" src="/assets/images/shape/decorative-el.svg" alt="decorative-el">
</span>
<div class="container">
<div class="flex justify-center">
<div class="w-full lg:w-5/6">
<div class="section-title text-center mb-0">
<h2>Technology Partners</h2>
</div>
<div class="social-prove-brand-area">
<div class="brand-image-wrapper">
{{ range $tech_parners := $.Site.Data.partners.technology_partners }}
{{ if $tech_parners.show }}
<a href="{{ $tech_parners.website }}" class="single-brand" target="_blank" title="Go to {{$tech_parners.website}}"><img src="{{ $tech_parners.logo }}" alt="{{ $tech_parners.name }}"></a>
{{ end }}
{{ end }}
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section class="system-integration section-padding">
<div class="container">
<div class="columns is-multiline is-centered">
<div class="column is-10">
<div class="section-title text-center mb-0">
<h2>System Integrators</h2>
</div>
<div class="social-prove-brand-area">
<div class="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> -->
<section class="contact-area" id="contact">
<span class="decorative-shape">
<img class="left-el" src="/assets/images/shape/decorative-el.svg" alt="decorative-el">
<img class="right-el" src="/assets/images/shape/decorative-el.svg" alt="decorative-el">
</span>
<div class="container">
<div class="flex justify-center">
<div class="w-full lg:w-5/6">
<div class="contact-form-wrapper section-padding">
<div class="section-title text-center mb-0">
<h2>Ready to become a partner? <br> Join our program today and start earning!</h2>
</div>
<div class="form-content">
<script src='https://appscode.freshworks.com/crm/sales/web_forms/8cba8c35285047f6bbc4641701ef8c2f96e2fa0908f9dea70bbc2729dd75c786/form.js' crossorigin='anonymous' id='fs_8cba8c35285047f6bbc4641701ef8c2f96e2fa0908f9dea70bbc2729dd75c786'></script>
</div>
</div>
</div>
</div>
</div>
</section>
{{ end }}
{{ define "testimonial" }}
<section></section>
{{ end }}
{{ define "customer-logos" }}
<section></section>
{{ end }}
{{ define "cta-install" }}
<section></section>
{{ end }}