-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (73 loc) · 2.93 KB
/
index.html
File metadata and controls
85 lines (73 loc) · 2.93 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
---
title: "Software Product Development | iOS, Android, Ember & Rails"
layout: default
---
<div class="header">
<a class="hire-us button light" href="{{ site.data.links.hire-us }}">Work With Us</a>
<img class="logo" src="/images/add-jam-logo.svg">
<h1 class="statement">We create beautiful software products</h1>
<a class="down" href="#team">
<img src="/images/down-arrow.svg">
</a>
</div>
<div class="our-team">
<div id="team" class="section">
<h2>It's All About the People</h2>
{% for person in site.data.team %}
<div class="person">
{% assign mod = forloop.index0 | modulo:2 %}
{% if mod == 0 %}
{% assign image_class = "image" %}
{% else %}
{% assign image_class = "image odd" %}
{% endif %}
<div class='{{ image_class }}'>
<img src="/images/{{ person.image }}">
</div>
<div class="description">
<p class="name">{{ person.name }}</p>
<p>{{ person.description }}</p>
<span class="social">
<img src="/images/twitter-icon.svg">
<a href="https://twitter.com/{{ person.twitter }}">@{{ person.twitter }}</a>
</span>
<span class="social">
<img src="/images/email-icon.svg">
<a href="mailto:{{ person.email }}">{{ person.email }}</a>
</span>
</div>
</div>
{% endfor %}
</div>
</div>
<div class="what-we-make">
<div id="what-we-make" class="section">
<h2>What Add Jam Does</h2>
<p>
With our highly skilled and capable team we develop products across all major mobile platforms and the web. To do this we believe in using the right tools for the job. We work with Java, Swift, Objective-C, Ruby and Javascript.
<p>
At Add Jam we also love contributing to the open source community. We publish our open source projects on our GitHub page and on our blog we provide posts to help others integrate them into their work.
</p>
<div class="nav">
<a href="{{ site.data.links.products }}" class="button light">Products</a>
<a href="{{ site.data.links.case-studies }}" class="button light">Client Case Studies</a>
<a href="{{ site.data.links.github }}" class="button light">Open Source</a>
</div>
<img src="/images/ipad-iphone-icon.svg">
</div>
</div>
<div class="open-and-transparent">
<div id="transparency" class="section">
<h2>We are Open & Transparent</h2>
<p>
We try to be as open as possible. With this in mind we proudly display the key metrics of our products, for all to see, on our dashboard. We use the very same dashboard internally to keep the team informed on product performance in real time. We found it so useful we thought it would be a shame not to share.
</p>
<p>
We also share our business journey on our blog. Our aim is simply to share our experiences of developing Add Jam as a business in the hope that it can help others do the same.
</p>
<div class="nav">
<a href="{{ site.data.links.dashboard }}" class="button">Dashboard</a>
<a href="{{ site.data.links.blog }}" class="button">Our Blog</a>
</div>
</div>
</div>